public static enum UpdateManager.InstanceProperties extends java.lang.Enum<UpdateManager.InstanceProperties>
| Enum Constant and Description |
|---|
INSTANCE_ACTIVATED
Constant used for events to signal that an instance has been activated.
|
INSTANCE_FAILED
Constant used for events to signal that an instance has failed.
|
INSTANCE_FINISHED
Constant used for events to signal that an instance has been finished.
|
INSTANCE_RESUMED
Constant used for events to signal that an instance has been resumed
|
INSTANCE_SUSPENDED
Constant used for events to signal that an instance has been suspended
|
| Modifier and Type | Method and Description |
|---|---|
static UpdateManager.InstanceProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateManager.InstanceProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateManager.InstanceProperties INSTANCE_ACTIVATED
public static final UpdateManager.InstanceProperties INSTANCE_SUSPENDED
public static final UpdateManager.InstanceProperties INSTANCE_RESUMED
public static final UpdateManager.InstanceProperties INSTANCE_FINISHED
public static final UpdateManager.InstanceProperties INSTANCE_FAILED
public static UpdateManager.InstanceProperties[] values()
for (UpdateManager.InstanceProperties c : UpdateManager.InstanceProperties.values()) System.out.println(c);
public static UpdateManager.InstanceProperties 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