public enum ScenarioState extends Enum<ScenarioState>
| Enum Constant and Description |
|---|
CREATING_DIALOG |
FAILED |
FINISHED |
PAUSED |
PROCESSING_STEP |
RECEIVING |
SENDING |
| Modifier and Type | Method and Description |
|---|---|
static ScenarioState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScenarioState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScenarioState PROCESSING_STEP
public static final ScenarioState CREATING_DIALOG
public static final ScenarioState SENDING
public static final ScenarioState PAUSED
public static final ScenarioState RECEIVING
public static final ScenarioState FINISHED
public static final ScenarioState FAILED
public static ScenarioState[] values()
for (ScenarioState c : ScenarioState.values()) System.out.println(c);
public static ScenarioState 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 © 2017. All Rights Reserved.