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