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