public static enum Operation.OperationType extends Enum<Operation.OperationType>
| Enum Constant and Description |
|---|
IDLE_TIME |
PRE_RUN |
SELECT |
UPSERT |
USER_DEFINED |
| Modifier and Type | Method and Description |
|---|---|
static Operation.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operation.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation.OperationType PRE_RUN
public static final Operation.OperationType UPSERT
public static final Operation.OperationType SELECT
public static final Operation.OperationType IDLE_TIME
public static final Operation.OperationType USER_DEFINED
public static Operation.OperationType[] values()
for (Operation.OperationType c : Operation.OperationType.values()) System.out.println(c);
public static Operation.OperationType 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 Apache Software Foundation. All rights reserved.