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