Android Reference
com.kakao.friends
Enum AppFriendOrder
-
package com.kakao.friends public enum AppFriendOrder extends Enum<AppFriendOrder>
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description FAVORITE
즐겨찾기 먼저 정렬.NICKNAME
닉네임 기준 정렬
-
Method Summary
Methods 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.
-
-
-
Method Detail
-
public String getValue()
-
public static AppFriendOrder valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
public static AppFriendOrder[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AppFriendOrder c : AppFriendOrder.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
-