public enum Order extends Enum<Order> implements Readable
Ordering
.Enum Constant and Description |
---|
ASCENDING |
DESCENDING |
Modifier and Type | Method and Description |
---|---|
static Order |
forSymbol(String symbol)
Attempt to find the Order given a symbol.
|
String |
getString()
Get the string representation of this query object.
|
String |
symbol()
Get the symbolic representation of the order
|
String |
toString() |
static Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Order ASCENDING
public static final Order DESCENDING
public static Order[] values()
for (Order c : Order.values()) System.out.println(c);
public static Order 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 nullpublic String symbol()
public static Order forSymbol(String symbol)
symbol
- the symbolIllegalArgumentException
- if the symbol is nullCopyright © 2008–2016 JBoss, a division of Red Hat. All rights reserved.