public enum AppFriendOrder extends Enum<AppFriendOrder>
Enum Constant and Description |
---|
FAVORITE
즐겨찾기 먼저 정렬.
|
NICKNAME
닉네임 기준 정렬
|
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static AppFriendOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppFriendOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppFriendOrder FAVORITE
public static final AppFriendOrder NICKNAME
public String getValue()
public static AppFriendOrder 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 static AppFriendOrder[] values()
for (AppFriendOrder c : AppFriendOrder.values()) System.out.println(c);