public class ResultType extends Object
i.e. "Select e.firstName, e.lastName from Employee e" returns List
QueryHints.RESULT_TYPE,
Record,
DatabaseRecord,
ReportQueryResult,
ReportQuery.setReturnType(int),
org.eclipse.persistence.queries.DataReadQuery#setUseAbstractRecord(boolean)| Modifier and Type | Field and Description |
|---|---|
static String |
Array
An Object array of values is returned (List
|
static String |
Attribute
A List of the first selected value is returned.
|
static String |
DEFAULT
The default type is Array.
|
static String |
Map
A Map of key value pairs is returned.
|
static String |
Value
The first value of the first rows is returned.
|
| Constructor and Description |
|---|
ResultType() |
public static final String Array
public static final String Map
public static final String Attribute
public static final String Value
public static final String DEFAULT