public static enum ValueModifier.Operation extends Enum<ValueModifier.Operation>
| Enum Constant and Description |
|---|
APPEND |
INCREMENT |
PREPEND |
REMOVE |
SET |
| Modifier and Type | Method and Description |
|---|---|
static ValueModifier.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueModifier.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueModifier.Operation SET
public static final ValueModifier.Operation INCREMENT
public static final ValueModifier.Operation APPEND
public static final ValueModifier.Operation PREPEND
public static final ValueModifier.Operation REMOVE
public static ValueModifier.Operation[] values()
for (ValueModifier.Operation c : ValueModifier.Operation.values()) System.out.println(c);
public static ValueModifier.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 © 2022. All rights reserved.