public enum ModuleInstanceState extends Enum<ModuleInstanceState>
Enum Constant and Description |
---|
CREATED
Module instance is in this state when created.
|
FINISHED
Module instance is in this state when it was finished by completion.
|
RUNNING
Module instance is in this state when initialized and running.
|
SUSPENDED
Module instance is in this state when suspended.
|
Modifier and Type | Method and Description |
---|---|
static ModuleInstanceState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleInstanceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleInstanceState CREATED
public static final ModuleInstanceState RUNNING
public static final ModuleInstanceState SUSPENDED
public static final ModuleInstanceState FINISHED
public static ModuleInstanceState[] values()
for (ModuleInstanceState c : ModuleInstanceState.values()) System.out.println(c);
public static ModuleInstanceState 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.