public static enum QuerySpec.Order extends java.lang.Enum<QuerySpec.Order>
Enum Constant and Description |
---|
ascending |
descending |
Modifier and Type | Field and Description |
---|---|
java.lang.String |
sql |
Modifier and Type | Method and Description |
---|---|
static QuerySpec.Order |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuerySpec.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuerySpec.Order ascending
public static final QuerySpec.Order descending
public static QuerySpec.Order[] values()
for (QuerySpec.Order c : QuerySpec.Order.values()) System.out.println(c);
public static QuerySpec.Order 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