public enum AppListType extends java.lang.Enum<AppListType>
| Enum Constant and Description |
|---|
APPS_IN_LIST_COMPLIANT
apps In List Compliant
|
APPS_NOT_IN_LIST_COMPLIANT
apps Not In List Compliant
|
NONE
none
|
UNEXPECTED_VALUE
For AppListType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static AppListType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppListType NONE
public static final AppListType APPS_IN_LIST_COMPLIANT
public static final AppListType APPS_NOT_IN_LIST_COMPLIANT
public static final AppListType UNEXPECTED_VALUE
public static AppListType[] values()
for (AppListType c : AppListType.values()) System.out.println(c);
public static AppListType 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 null