public static enum PackageOperation.InstallStatus extends java.lang.Enum<PackageOperation.InstallStatus>
| Enum Constant and Description |
|---|
COMPLETE
The operation has ended unsuccessfully.
|
FAILED
The operation has ended unsuccessfully.
|
NOT_STARTED
This operation hasn't started yet
|
PREPARED
The steps that can be taken without affecting the installed SDK have completed.
|
PREPARING
This operation is in the process of preparing the component.
|
RUNNING
The SDK is being modified.
|
| Modifier and Type | Method and Description |
|---|---|
static PackageOperation.InstallStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PackageOperation.InstallStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackageOperation.InstallStatus NOT_STARTED
public static final PackageOperation.InstallStatus PREPARING
public static final PackageOperation.InstallStatus PREPARED
public static final PackageOperation.InstallStatus RUNNING
public static final PackageOperation.InstallStatus FAILED
public static final PackageOperation.InstallStatus COMPLETE
public static PackageOperation.InstallStatus[] values()
for (PackageOperation.InstallStatus c : PackageOperation.InstallStatus.values()) System.out.println(c);
public static PackageOperation.InstallStatus 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