public enum AlgorithmStartOption extends java.lang.Enum<AlgorithmStartOption>
Enum Constant and Description |
---|
NORMAL
the default start option meaning the algorithm is executed using the current execution speed factor
|
PLAY_AND_PAUSE
the algorithm plays the current step and pauses after the step is executed
|
START_TO_FINISH
the algorithm runs to its end in the fastest possible execution speed
|
Modifier and Type | Method and Description |
---|---|
static AlgorithmStartOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmStartOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmStartOption NORMAL
public static final AlgorithmStartOption START_TO_FINISH
public static final AlgorithmStartOption PLAY_AND_PAUSE
public static AlgorithmStartOption[] values()
for (AlgorithmStartOption c : AlgorithmStartOption.values()) System.out.println(c);
public static AlgorithmStartOption 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