public enum ModelInstanceStartStatus extends Enum<ModelInstanceStartStatus>
Enum Constant and Description |
---|
FAILED
Starting of model instance failed.
|
FINISHED
Start of model instance has been finished successfully or execution of model instance has finished
|
IN_PROGRESS
Model instance has been created, but its start has not finished yet.
|
IN_PROGRESS_EXPLICIT_FINISH
Model instance has been created, but its start has not finished yet.
|
Modifier and Type | Method and Description |
---|---|
String |
getLabel()
Returns informative label
|
static ModelInstanceStartStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelInstanceStartStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelInstanceStartStatus IN_PROGRESS
public static final ModelInstanceStartStatus IN_PROGRESS_EXPLICIT_FINISH
public static final ModelInstanceStartStatus FINISHED
public static final ModelInstanceStartStatus FAILED
public static ModelInstanceStartStatus[] values()
for (ModelInstanceStartStatus c : ModelInstanceStartStatus.values()) System.out.println(c);
public static ModelInstanceStartStatus 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 String getLabel()
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.