public enum UpdateType extends Enum<UpdateType>
| Enum Constant | Description |
|---|---|
ARRAY_APPEND |
|
ARRAY_INSERT |
|
ITEM_MERGE |
|
ITEM_REMOVE |
|
ITEM_REPLACE |
|
ITEM_SET |
|
MERGE_PATCH |
|
SET |
| Modifier and Type | Method | Description |
|---|---|---|
static UpdateType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static UpdateType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateType SET
public static final UpdateType ITEM_REMOVE
public static final UpdateType ITEM_SET
public static final UpdateType ITEM_REPLACE
public static final UpdateType ITEM_MERGE
public static final UpdateType ARRAY_INSERT
public static final UpdateType ARRAY_APPEND
public static final UpdateType MERGE_PATCH
public static UpdateType[] values()
for (UpdateType c : UpdateType.values()) System.out.println(c);
public static UpdateType 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 null