public enum UserOrderBy extends Enum<UserOrderBy>
| Enum Constant and Description |
|---|
email |
id |
include |
name |
registered_date |
slug |
url |
| Modifier and Type | Method and Description |
|---|---|
static UserOrderBy |
valueOf(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 id
public static final UserOrderBy include
public static final UserOrderBy name
public static final UserOrderBy registered_date
public static final UserOrderBy slug
public static final UserOrderBy email
public static final UserOrderBy url
public static UserOrderBy[] values()
for (UserOrderBy c : UserOrderBy.values()) System.out.println(c);
public static UserOrderBy 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 nullApache Camel