public static enum Mutate.Mutation extends Enum<Mutate.Mutation>
Enum Constant and Description |
---|
ADD
Only merge if parent/input object field is null or non-existant.
|
CLEAR
Clear the field field value.
|
MERGE
|
OVERWRITE
Blindly overwrite any exiting value
|
Modifier and Type | Method and Description |
---|---|
static Mutate.Mutation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mutate.Mutation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mutate.Mutation ADD
public static final Mutate.Mutation OVERWRITE
public static final Mutate.Mutation MERGE
public static final Mutate.Mutation CLEAR
public static Mutate.Mutation[] values()
for (Mutate.Mutation c : Mutate.Mutation.values()) System.out.println(c);
public static Mutate.Mutation 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 © 2018. All rights reserved.