public enum InstallIntent extends java.lang.Enum<InstallIntent>
| Enum Constant and Description |
|---|
AVAILABLE
available
|
AVAILABLE_WITHOUT_ENROLLMENT
available Without Enrollment
|
REQUIRED
required
|
UNEXPECTED_VALUE
For InstallIntent values that were not expected from the service
|
UNINSTALL
uninstall
|
| Modifier and Type | Method and Description |
|---|---|
static InstallIntent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstallIntent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstallIntent AVAILABLE
public static final InstallIntent REQUIRED
public static final InstallIntent UNINSTALL
public static final InstallIntent AVAILABLE_WITHOUT_ENROLLMENT
public static final InstallIntent UNEXPECTED_VALUE
public static InstallIntent[] values()
for (InstallIntent c : InstallIntent.values()) System.out.println(c);
public static InstallIntent 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