| Enum Constant and Description |
|---|
KEYS_ASCENDING |
VALUES_ASCENDING |
VALUES_DESCENDING |
| Modifier and Type | Method and Description |
|---|---|
static RowOrder |
fromId(java.lang.String id) |
java.lang.String |
getId() |
java.lang.String |
toString() |
static RowOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RowOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowOrder KEYS_ASCENDING
public static final RowOrder VALUES_ASCENDING
public static final RowOrder VALUES_DESCENDING
public static RowOrder[] values()
for (RowOrder c : RowOrder.values()) System.out.println(c);
public static RowOrder 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 nullpublic java.lang.String getId()
@Nullable public static RowOrder fromId(java.lang.String id)
public java.lang.String toString()
toString in class java.lang.Enum<RowOrder>