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