public enum InstallState extends java.lang.Enum<InstallState>
| Enum Constant and Description |
|---|
FAILED
failed
|
INSTALLED
installed
|
NOT_APPLICABLE
not Applicable
|
NOT_INSTALLED
not Installed
|
UNEXPECTED_VALUE
For InstallState values that were not expected from the service
|
UNINSTALL_FAILED
uninstall Failed
|
UNKNOWN
unknown
|
| Modifier and Type | Method and Description |
|---|---|
static InstallState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstallState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstallState NOT_APPLICABLE
public static final InstallState INSTALLED
public static final InstallState FAILED
public static final InstallState NOT_INSTALLED
public static final InstallState UNINSTALL_FAILED
public static final InstallState UNKNOWN
public static final InstallState UNEXPECTED_VALUE
public static InstallState[] values()
for (InstallState c : InstallState.values()) System.out.println(c);
public static InstallState 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