public enum UserInfo extends Enum<UserInfo>
| Enum Constant and Description |
|---|
DEVICE_NAME |
INSTALLED_APPS |
LATITUDE |
LONGITUDE |
MODEL |
SYSTEM_NAME |
SYSTEM_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static UserInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserInfo DEVICE_NAME
public static final UserInfo SYSTEM_NAME
public static final UserInfo MODEL
public static final UserInfo SYSTEM_VERSION
public static final UserInfo INSTALLED_APPS
public static final UserInfo LONGITUDE
public static final UserInfo LATITUDE
public static UserInfo[] values()
for (UserInfo c : UserInfo.values()) System.out.println(c);
public static UserInfo 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 nullCopyright © 2015 Atlassian. All rights reserved.