public enum FriendFieldEnum extends java.lang.Enum<FriendFieldEnum>
| Enum Constant and Description |
|---|
ALIAS
Alias
|
EXTENSION
Extended field
|
undefined
Undefined
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Class |
getFieldType() |
int |
getValue() |
static FriendFieldEnum |
typeOfValue(int value) |
static FriendFieldEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FriendFieldEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FriendFieldEnum undefined
public static final FriendFieldEnum ALIAS
public static final FriendFieldEnum EXTENSION
public static FriendFieldEnum[] values()
for (FriendFieldEnum c : FriendFieldEnum.values()) System.out.println(c);
public static FriendFieldEnum 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 nullpublic static FriendFieldEnum typeOfValue(int value)
public int getValue()
public java.lang.Class getFieldType()