public enum UserOrderBy extends java.lang.Enum<UserOrderBy>
| Enum Constant and Description |
|---|
ALPHABETICALLY_ASC |
ALPHABETICALLY_DESC |
CREATION_DATE |
DISTANCE |
RELEVANCE |
| Modifier and Type | Method and Description |
|---|---|
static UserOrderBy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserOrderBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserOrderBy RELEVANCE
public static final UserOrderBy CREATION_DATE
public static final UserOrderBy ALPHABETICALLY_ASC
public static final UserOrderBy ALPHABETICALLY_DESC
public static final UserOrderBy DISTANCE
public static UserOrderBy[] values()
for (UserOrderBy c : UserOrderBy.values()) System.out.println(c);
public static UserOrderBy 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