public enum AppStatisticsStatus extends Enum<AppStatisticsStatus>
| Enum Constant and Description |
|---|
ACTIVATED
The app is activated.
|
CHANGED
The app settings are changed but not activated yet.
|
NOT_ACTIVATED
The app is not activated yet.
|
| Modifier and Type | Method and Description |
|---|---|
static AppStatisticsStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppStatisticsStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppStatisticsStatus CHANGED
public static final AppStatisticsStatus NOT_ACTIVATED
public static final AppStatisticsStatus ACTIVATED
public static AppStatisticsStatus[] values()
for (AppStatisticsStatus c : AppStatisticsStatus.values()) System.out.println(c);
public static AppStatisticsStatus 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