public static enum SqlOrder.Order extends Enum<SqlOrder.Order>
| Enum Constant and Description |
|---|
ASC
ascending ordering
|
DESC
descending ordering
|
NONE
no ordering
|
| Modifier and Type | Method and Description |
|---|---|
static SqlOrder.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlOrder.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlOrder.Order NONE
public static final SqlOrder.Order ASC
public static final SqlOrder.Order DESC
public static SqlOrder.Order[] values()
for (SqlOrder.Order c : SqlOrder.Order.values()) System.out.println(c);
public static SqlOrder.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 nullCopyright © 2014. All Rights Reserved.