public enum UserSortAttribute extends Enum<UserSortAttribute>
Enum Constant and Description |
---|
email
Sort by email
|
firstname
Sort by firstname
|
id
Sort by ID
|
lastname
Sort by lastname
|
login
Sort by login
|
Modifier and Type | Method and Description |
---|---|
static UserSortAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserSortAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserSortAttribute id
public static final UserSortAttribute login
public static final UserSortAttribute firstname
public static final UserSortAttribute lastname
public static final UserSortAttribute email
public static UserSortAttribute[] values()
for (UserSortAttribute c : UserSortAttribute.values()) System.out.println(c);
public static UserSortAttribute 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 © 2024 Gentics Software. All rights reserved.