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