- All Implemented Interfaces:
Serializable
,Comparable<Operation.Type>
,Constable
- Enclosing interface:
- Operation
Type of operation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAsynchronous fetch from statement cursor: receiving response with rows.Asynchronous fetch from statement cursor: sending request for rows.Synchronous fetch from statement cursor. -
Method Summary
Modifier and TypeMethodDescriptionboolean
static Operation.Type
Returns the enum constant of this class with the specified name.static Operation.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STATEMENT_EXECUTE
-
STATEMENT_FETCH
Synchronous fetch from statement cursor. -
STATEMENT_ASYNC_FETCH_START
Asynchronous fetch from statement cursor: sending request for rows.- Since:
- 6
-
STATEMENT_ASYNC_FETCH_COMPLETE
Asynchronous fetch from statement cursor: receiving response with rows.This operation is not cancellable.
- Since:
- 6
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isCancellable
public boolean isCancellable()
-