public enum InstallState extends Enum<InstallState>
| Enum Constant and Description |
|---|
Installed |
NotInstalled |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static InstallState |
valueOf(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 Installed
public static final InstallState NotInstalled
public static final InstallState Unknown
public static InstallState[] values()
for (InstallState c : InstallState.values()) System.out.println(c);
public static InstallState 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 © 2017. All rights reserved.