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