public static enum UserStorage.Order extends Enum<UserStorage.Order>
Enum Constant and Description |
---|
ABBREVIATION
Order by a defined abbreviation.
|
EMAIL
Order by e-mail address.
|
ID
Order by the user's id.
|
LOGIN
Order by the user's login name.
|
NAME
Order by the user's real name.
|
Modifier and Type | Method and Description |
---|---|
static UserStorage.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserStorage.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserStorage.Order ABBREVIATION
public static final UserStorage.Order EMAIL
public static final UserStorage.Order ID
public static final UserStorage.Order LOGIN
public static final UserStorage.Order NAME
public static UserStorage.Order[] values()
for (UserStorage.Order c : UserStorage.Order.values()) System.out.println(c);
public static UserStorage.Order 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 nullCopyright © 2021 e-Spirit AG. All Rights Reserved. Build 5.2.210210