public enum AppInfo extends Enum<AppInfo>
| Enum Constant and Description |
|---|
APP_FIRST_USE |
APP_LAST_UPDATE_REQ |
APP_NAME |
APP_PINGS |
APP_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static AppInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppInfo APP_VERSION
public static final AppInfo APP_PINGS
public static final AppInfo APP_FIRST_USE
public static final AppInfo APP_LAST_UPDATE_REQ
public static final AppInfo APP_NAME
public static AppInfo[] values()
for (AppInfo c : AppInfo.values()) System.out.println(c);
public static AppInfo 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.