public enum MetaType extends Enum<MetaType>
Enum Constant and Description |
---|
META_APPLICATION_NAME
Your application's name.
|
META_FIRST_NAME
First name of user.
|
META_ID
Identifier of user.
|
META_LAST_NAME
Last name of user.
|
META_LATITUDE
The latitude of the user .
|
META_LONGITUDE
The longitude of the user.
|
META_OS
Operating system of user.
|
META_PHONETYPE
Phone type of user.
|
META_PROVIDER
Provider of user.
|
Modifier and Type | Method and Description |
---|---|
static MetaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetaType META_FIRST_NAME
public static final MetaType META_LAST_NAME
public static final MetaType META_ID
public static final MetaType META_OS
public static final MetaType META_PHONETYPE
public static final MetaType META_PROVIDER
public static final MetaType META_APPLICATION_NAME
public static final MetaType META_LATITUDE
public static final MetaType META_LONGITUDE
public static MetaType[] values()
for (MetaType c : MetaType.values()) System.out.println(c);
public static MetaType 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 null