@Generated public enum TimeoutAction extends Enum<TimeoutAction>
`CONTINUE` → the statement execution continues asynchronously and the call returns a statement ID immediately.
`CANCEL` → the statement execution is canceled and the call returns immediately with a `CANCELED` state.
Modifier and Type | Method and Description |
---|---|
static TimeoutAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeoutAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeoutAction CANCEL
public static final TimeoutAction CONTINUE
public static TimeoutAction[] values()
for (TimeoutAction c : TimeoutAction.values()) System.out.println(c);
public static TimeoutAction 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.