public enum UpdateOperator extends Enum<UpdateOperator>
Enum Constant and Description |
---|
_add |
_append |
_foreach |
_insert |
_set |
_unset |
Modifier and Type | Method and Description |
---|---|
static UpdateOperator |
fromString(String s) |
String |
toString() |
static UpdateOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateOperator _set
public static final UpdateOperator _unset
public static final UpdateOperator _add
public static final UpdateOperator _append
public static final UpdateOperator _insert
public static final UpdateOperator _foreach
public static UpdateOperator[] values()
for (UpdateOperator c : UpdateOperator.values()) System.out.println(c);
public static UpdateOperator 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 nullpublic String toString()
toString
in class Enum<UpdateOperator>
public static UpdateOperator fromString(String s)
Copyright © 2014. All rights reserved.