public static enum UpdateOp.Operation.Type extends Enum<UpdateOp.Operation.Type>
| Enum Constant and Description |
|---|
CONTAINS_MAP_ENTRY
Checks if the sub-key is present in a map or not.
|
INCREMENT
Increment the Long value with the provided Long value.
|
REMOVE_MAP_ENTRY
Remove the sub-key / value pair.
|
SET
Set the value.
|
SET_MAP
Set the sub-key / value pair.
|
SET_MAP_ENTRY
Add the sub-key / value pair.
|
| Modifier and Type | Method and Description |
|---|---|
static UpdateOp.Operation.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateOp.Operation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateOp.Operation.Type SET
public static final UpdateOp.Operation.Type INCREMENT
public static final UpdateOp.Operation.Type SET_MAP_ENTRY
public static final UpdateOp.Operation.Type REMOVE_MAP_ENTRY
public static final UpdateOp.Operation.Type CONTAINS_MAP_ENTRY
public static final UpdateOp.Operation.Type SET_MAP
public static UpdateOp.Operation.Type[] values()
for (UpdateOp.Operation.Type c : UpdateOp.Operation.Type.values()) System.out.println(c);
public static UpdateOp.Operation.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 © 2012-2013 The Apache Software Foundation. All Rights Reserved.