public static enum ValidationSpec.RefreshPolicy extends Enum<ValidationSpec.RefreshPolicy>
| Enum Constant and Description | 
|---|
| AS_ISSpecifies that the validation report of the dataset, table or record
 to validate will only contain validation messages
 that have been persisted in the database. | 
| NO_WAITSpecifies that the validation of the dataset, table or record
 must not wait for the end of a concurrent validation. | 
| UP_TO_DATESpecifies that the validation report of the dataset, table or record to
 validate must be updated. | 
| Modifier and Type | Method and Description | 
|---|---|
| static ValidationSpec.RefreshPolicy | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ValidationSpec.RefreshPolicy[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ValidationSpec.RefreshPolicy UP_TO_DATE
public static final ValidationSpec.RefreshPolicy AS_IS
public static final ValidationSpec.RefreshPolicy NO_WAIT
ValidationReport.hasSkippedValidation()public static ValidationSpec.RefreshPolicy[] values()
for (ValidationSpec.RefreshPolicy c : ValidationSpec.RefreshPolicy.values()) System.out.println(c);
public static ValidationSpec.RefreshPolicy 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 null