public enum CellMigrationState extends Enum<CellMigrationState>
Enum Constant and Description |
---|
INACTIVE
Cell migration in dormant / stopped state.
|
INITIATED
Cell migration initiated.
|
PAUSED
Cell migration temporarily paused.
|
Modifier and Type | Method and Description |
---|---|
byte |
code() |
static CellMigrationState |
toEnum(byte code) |
static CellMigrationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellMigrationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellMigrationState INACTIVE
public static final CellMigrationState PAUSED
public static final CellMigrationState INITIATED
public static CellMigrationState[] values()
for (CellMigrationState c : CellMigrationState.values()) System.out.println(c);
public static CellMigrationState 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 nullpublic byte code()
public static CellMigrationState toEnum(byte code)