public static enum ETMLiveListener.RunningState extends java.lang.Enum<ETMLiveListener.RunningState>
Enum Constant and Description |
---|
NOT_STARTED
Indicating that the algorithm has not been started yet.
|
RUNNING
Indicating that the algorithm is currently working.
|
TERMINATED
Indicating that the algorithm stopped because a termination condition
has been met (e.g.
|
USERCANCELLED
Indicating that the algorithm is pauzed because the user cancelled it
|
Modifier and Type | Method and Description |
---|---|
static ETMLiveListener.RunningState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ETMLiveListener.RunningState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETMLiveListener.RunningState NOT_STARTED
public static final ETMLiveListener.RunningState RUNNING
public static final ETMLiveListener.RunningState USERCANCELLED
public static final ETMLiveListener.RunningState TERMINATED
public static ETMLiveListener.RunningState[] values()
for (ETMLiveListener.RunningState c : ETMLiveListener.RunningState.values()) System.out.println(c);
public static ETMLiveListener.RunningState 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