enum StatementCancelState extends java.lang.Enum<StatementCancelState>
PgStatement.cancel() state.| Enum Constant and Description |
|---|
CANCELING |
CANCELLED |
IDLE |
IN_QUERY |
| Modifier and Type | Method and Description |
|---|---|
static StatementCancelState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatementCancelState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementCancelState IDLE
public static final StatementCancelState IN_QUERY
public static final StatementCancelState CANCELING
public static final StatementCancelState CANCELLED
public static StatementCancelState[] values()
for (StatementCancelState c : StatementCancelState.values()) System.out.println(c);
public static StatementCancelState 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