public enum QueryResultTypes extends java.lang.Enum<QueryResultTypes>
| Enum Constant and Description |
|---|
NESTED_COLLECTION |
OBJECT_COLLECTION |
PDX_COLLECTION |
STRUCT_COLLECTION |
| Modifier and Type | Method and Description |
|---|---|
static QueryResultTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryResultTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryResultTypes OBJECT_COLLECTION
public static final QueryResultTypes PDX_COLLECTION
public static final QueryResultTypes STRUCT_COLLECTION
public static final QueryResultTypes NESTED_COLLECTION
public static QueryResultTypes[] values()
for (QueryResultTypes c : QueryResultTypes.values()) System.out.println(c);
public static QueryResultTypes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null