public static enum Patch.PatchOperation extends Enum<Patch.PatchOperation>
Enum Constant and Description |
---|
add |
copy |
move |
remove |
replace |
test |
Modifier and Type | Method and Description |
---|---|
static Patch.PatchOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Patch.PatchOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Patch.PatchOperation add
public static final Patch.PatchOperation copy
public static final Patch.PatchOperation move
public static final Patch.PatchOperation remove
public static final Patch.PatchOperation replace
public static final Patch.PatchOperation test
public static Patch.PatchOperation[] values()
for (Patch.PatchOperation c : Patch.PatchOperation.values()) System.out.println(c);
public static Patch.PatchOperation 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 nullCopyright © 2016. All rights reserved.