public enum JsonPatchOperationType extends java.lang.Enum<JsonPatchOperationType>
| Enum Constant and Description |
|---|
ADD |
COPY |
MOVE |
REMOVE |
REPLACE |
TEST |
| Modifier and Type | Method and Description |
|---|---|
static JsonPatchOperationType |
forValue(java.lang.String value) |
static JsonPatchOperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsonPatchOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonPatchOperationType ADD
public static final JsonPatchOperationType REMOVE
public static final JsonPatchOperationType REPLACE
public static final JsonPatchOperationType COPY
public static final JsonPatchOperationType TEST
public static final JsonPatchOperationType MOVE
public static JsonPatchOperationType[] values()
for (JsonPatchOperationType c : JsonPatchOperationType.values()) System.out.println(c);
public static JsonPatchOperationType 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 JsonPatchOperationType forValue(java.lang.String value)