public enum ValidationLevel extends java.lang.Enum<ValidationLevel>
| Enum Constant and Description |
|---|
FULL
Full validation covers all errors that the API has knowledge of.
|
SIMPLE
Simple validation covers required properties in the model, for
example a table must have columns.
|
| Modifier and Type | Method and Description |
|---|---|
static ValidationLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationLevel SIMPLE
public static final ValidationLevel FULL
SIMPLE. Can be long running, and should be interruptable.public static ValidationLevel[] values()
for (ValidationLevel c : ValidationLevel.values()) System.out.println(c);
public static ValidationLevel 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