public static enum MutationOp.Type extends Enum<MutationOp.Type>
| Enum Constant and Description |
|---|
APPEND |
DELETE |
INCREMENT |
MERGE |
SET |
SET_OR_REPLACE |
| Modifier and Type | Method and Description |
|---|---|
static MutationOp.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutationOp.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MutationOp.Type SET
public static final MutationOp.Type SET_OR_REPLACE
public static final MutationOp.Type DELETE
public static final MutationOp.Type INCREMENT
public static final MutationOp.Type APPEND
public static final MutationOp.Type MERGE
public static MutationOp.Type[] values()
for (MutationOp.Type c : MutationOp.Type.values()) System.out.println(c);
public static MutationOp.Type 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 © 2015–2019 MapR Technologies, Inc.. All rights reserved.