public static enum ValidatorContext.UpdateMode extends java.lang.Enum<ValidatorContext.UpdateMode>
| Enum Constant and Description | 
|---|
COMPLETE
If the update mode is complete, all properties should be present in
 the input. 
 | 
HYBRID
In the hybrid mode, most input can be sparse, with the exception of
 Collections and Maps. 
 | 
SPARSE
If the update mode is sparse, any present input updatable properties
 will be updated. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ValidatorContext.UpdateMode | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ValidatorContext.UpdateMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ValidatorContext.UpdateMode COMPLETE
public static final ValidatorContext.UpdateMode SPARSE
public static final ValidatorContext.UpdateMode HYBRID
public static ValidatorContext.UpdateMode[] values()
for (ValidatorContext.UpdateMode c : ValidatorContext.UpdateMode.values()) System.out.println(c);
public static ValidatorContext.UpdateMode 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 null