public enum UserSortProperty extends Enum<UserSortProperty>
Enum Constant and Description |
---|
EMAIL |
FIRSTNAME |
LASTNAME |
NUMBER |
OBJECTID |
USERNAME |
Modifier and Type | Method and Description |
---|---|
String |
getProperty() |
static UserSortProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserSortProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserSortProperty OBJECTID
public static final UserSortProperty USERNAME
public static final UserSortProperty FIRSTNAME
public static final UserSortProperty LASTNAME
public static final UserSortProperty NUMBER
public static final UserSortProperty EMAIL
public static UserSortProperty[] values()
for (UserSortProperty c : UserSortProperty.values()) System.out.println(c);
public static UserSortProperty 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 String getProperty()
Copyright © 2019 Suncode. All rights reserved.