public enum FriendHintType extends java.lang.Enum<FriendHintType> implements BetterEnum<java.lang.Integer>
Enum Constant and Description |
---|
CENTRAL_ID |
EMAIL |
GAME |
PLATFORM |
SITE |
UNKNOWN |
USERNAME |
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
getValue() |
static FriendHintType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FriendHintType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FriendHintType UNKNOWN
public static final FriendHintType CENTRAL_ID
public static final FriendHintType USERNAME
public static final FriendHintType EMAIL
public static final FriendHintType SITE
public static final FriendHintType GAME
public static final FriendHintType PLATFORM
public static FriendHintType[] values()
for (FriendHintType c : FriendHintType.values()) System.out.println(c);
public static FriendHintType 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@Nonnull public java.lang.Integer getValue()
getValue
in interface BetterEnum<java.lang.Integer>