public enum AsyncOperationType extends Enum<AsyncOperationType>
| Enum Constant and Description |
|---|
BULK |
ENSURE_INDICES |
INC |
PULL |
PUSH |
READ |
REMOVE |
SET |
UNSET |
UPDATE |
WRITE |
| Modifier and Type | Method and Description |
|---|---|
static AsyncOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsyncOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncOperationType READ
public static final AsyncOperationType WRITE
public static final AsyncOperationType UPDATE
public static final AsyncOperationType SET
public static final AsyncOperationType INC
public static final AsyncOperationType UNSET
public static final AsyncOperationType PUSH
public static final AsyncOperationType PULL
public static final AsyncOperationType REMOVE
public static final AsyncOperationType ENSURE_INDICES
public static final AsyncOperationType BULK
public static AsyncOperationType[] values()
for (AsyncOperationType c : AsyncOperationType.values()) System.out.println(c);
public static AsyncOperationType 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 © 2019. All rights reserved.