public enum NestedQueryType extends Enum<NestedQueryType>
| Enum Constant and Description |
|---|
BASIC |
CUSTOM_QUERY |
DETACHED_SUBQUERY |
| Modifier and Type | Method and Description |
|---|---|
static NestedQueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NestedQueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NestedQueryType BASIC
public static final NestedQueryType DETACHED_SUBQUERY
public static final NestedQueryType CUSTOM_QUERY
public static NestedQueryType[] values()
for (NestedQueryType c : NestedQueryType.values()) System.out.println(c);
public static NestedQueryType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2008–2016 Sohnar Ltd.. All rights reserved.