public static enum MarkovProcess.Status extends java.lang.Enum<MarkovProcess.Status>
Enum Constant and Description |
---|
ERROR
Model execution generated an error
|
GENERATED
Model has been generated
|
IDLE
Model has not been generated
|
NoModel
No Model loaded.
|
RUNNING
Model is being generated
|
SUSPENDED
Model execution has been suspended
|
WRITING
Model generated, writing matrix
|
Modifier and Type | Method and Description |
---|---|
static MarkovProcess.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MarkovProcess.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkovProcess.Status IDLE
public static final MarkovProcess.Status RUNNING
public static final MarkovProcess.Status GENERATED
public static final MarkovProcess.Status SUSPENDED
public static final MarkovProcess.Status WRITING
public static final MarkovProcess.Status ERROR
public static final MarkovProcess.Status NoModel
public static MarkovProcess.Status[] values()
for (MarkovProcess.Status c : MarkovProcess.Status.values()) System.out.println(c);
public static MarkovProcess.Status 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