@Generated public enum StatementState extends Enum<StatementState>
Enum Constant and Description |
---|
CANCELED |
CLOSED |
FAILED |
PENDING |
RUNNING |
SUCCEEDED |
Modifier and Type | Method and Description |
---|---|
static StatementState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementState CANCELED
public static final StatementState CLOSED
public static final StatementState FAILED
public static final StatementState PENDING
public static final StatementState RUNNING
public static final StatementState SUCCEEDED
public static StatementState[] values()
for (StatementState c : StatementState.values()) System.out.println(c);
public static StatementState 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 © 2023. All rights reserved.