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