public static enum UpdateParams.Operation extends java.lang.Enum<UpdateParams.Operation>
| Enum Constant and Description |
|---|
ADD |
DELETE_BY_ID |
DELETE_BY_QUERY |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static UpdateParams.Operation |
get(java.lang.String label) |
static UpdateParams.Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateParams.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateParams.Operation ADD
public static final UpdateParams.Operation DELETE_BY_ID
public static final UpdateParams.Operation DELETE_BY_QUERY
public static final UpdateParams.Operation NONE
public static UpdateParams.Operation[] values()
for (UpdateParams.Operation c : UpdateParams.Operation.values()) System.out.println(c);
public static UpdateParams.Operation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static UpdateParams.Operation get(java.lang.String label)