public enum EPStatementState extends Enum<EPStatementState>
Enum Constant and Description |
---|
DESTROYED
Destroyed state.
|
FAILED
Failed state, equivalent to STOPPED state and reserved for a failed recovery of statement state; Not applicable to core engine.
|
STARTED
Started state.
|
STOPPED
Stopped state.
|
Modifier and Type | Method and Description |
---|---|
static EPStatementState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EPStatementState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPStatementState STARTED
public static final EPStatementState STOPPED
public static final EPStatementState DESTROYED
public static final EPStatementState FAILED
public static EPStatementState[] values()
for (EPStatementState c : EPStatementState.values()) System.out.println(c);
public static EPStatementState 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 null