public static enum UpdateOp.Condition.Type extends Enum<UpdateOp.Condition.Type>
| Enum Constant and Description |
|---|
EQUALS
Checks if a map entry equals a given value.
|
EXISTS
Checks if the map entry is present in a map or not.
|
NOTEQUALS
Checks if a map entry does not equal a given value.
|
| Modifier and Type | Method and Description |
|---|---|
static UpdateOp.Condition.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateOp.Condition.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateOp.Condition.Type EXISTS
public static final UpdateOp.Condition.Type EQUALS
public static final UpdateOp.Condition.Type NOTEQUALS
public static UpdateOp.Condition.Type[] values()
for (UpdateOp.Condition.Type c : UpdateOp.Condition.Type.values()) System.out.println(c);
public static UpdateOp.Condition.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–2018 The Apache Software Foundation. All rights reserved.