public static enum ProcessConstants.InstanceMigrationStatus extends java.lang.Enum<ProcessConstants.InstanceMigrationStatus>
| Enum Constant and Description |
|---|
IM_MIGRATABLE
An instance in state "migratable" can be migrated when a the
corresponding template has been changed and the changes should be
propagated.
|
IM_MIGRATING
While an instance is in state "migrating" it is (semantically) suspended
and unchangeable.
|
IM_NOT_MIGRATABLE
Instances in state "notMigratable" may not be subject of a schema
evolution.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.InstanceMigrationStatus |
valueOf(int code) |
static ProcessConstants.InstanceMigrationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.InstanceMigrationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.InstanceMigrationStatus IM_MIGRATABLE
public static final ProcessConstants.InstanceMigrationStatus IM_MIGRATING
public static final ProcessConstants.InstanceMigrationStatus IM_NOT_MIGRATABLE
public static ProcessConstants.InstanceMigrationStatus[] values()
for (ProcessConstants.InstanceMigrationStatus c : ProcessConstants.InstanceMigrationStatus.values()) System.out.println(c);
public static ProcessConstants.InstanceMigrationStatus 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 nullpublic int getCode()
public static ProcessConstants.InstanceMigrationStatus valueOf(int code)