public static enum UsersOrder.InTeam extends Enum<UsersOrder.InTeam>
| Enum Constant and Description |
|---|
CREATE_AT
sort by create_at.
|
LAST_ACTIVITY_AT
sort by last_activity_at.
|
NONE
sort by username.
|
| Modifier and Type | Method and Description |
|---|---|
static UsersOrder.InTeam |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UsersOrder.InTeam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UsersOrder.InTeam NONE
public static final UsersOrder.InTeam LAST_ACTIVITY_AT
public static final UsersOrder.InTeam CREATE_AT
public static UsersOrder.InTeam[] values()
for (UsersOrder.InTeam c : UsersOrder.InTeam.values()) System.out.println(c);
public static UsersOrder.InTeam 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 © 2019. All rights reserved.