public enum StatementCancelState extends Enum<StatementCancelState>
PgStatement.cancel() state.| Enum Constant and Description |
|---|
CANCELING |
CANCELLED |
IDLE |
IN_QUERY |
| Modifier and Type | Method and Description |
|---|---|
static StatementCancelState |
valueOf(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(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 openGauss. All rights reserved.