public static enum UserAccountsOrdering.Direction extends Enum<UserAccountsOrdering.Direction>
| Enum Constant and Description |
|---|
ASCENDING |
DESCENDING |
| Modifier and Type | Field and Description |
|---|---|
static UserAccountsOrdering.Direction |
DEFAULT_DIRECTION |
String |
keyword |
| Modifier and Type | Method and Description |
|---|---|
static UserAccountsOrdering.Direction |
fromKeyword(String keyword) |
static UserAccountsOrdering.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserAccountsOrdering.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAccountsOrdering.Direction ASCENDING
public static final UserAccountsOrdering.Direction DESCENDING
public static UserAccountsOrdering.Direction DEFAULT_DIRECTION
public final String keyword
public static UserAccountsOrdering.Direction[] values()
for (UserAccountsOrdering.Direction c : UserAccountsOrdering.Direction.values()) System.out.println(c);
public static UserAccountsOrdering.Direction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static UserAccountsOrdering.Direction fromKeyword(String keyword)
Copyright © 2022. All rights reserved.