public enum ValidationType extends Enum<ValidationType>
| Enum Constant and Description |
|---|
ALL
Indicates that all fields should be validated.
|
SKIP_ASSET_VALIDATION
Indicates that the validation of assets should be skipped.
|
SKIP_VALIDATION
Indicates that all validation methods (except of null pointer checks)
should be skipped.
|
| Modifier and Type | Method and Description |
|---|---|
static ValidationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationType SKIP_VALIDATION
public static final ValidationType SKIP_ASSET_VALIDATION
public static final ValidationType ALL
public static ValidationType[] values()
for (ValidationType c : ValidationType.values()) System.out.println(c);
public static ValidationType 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 © 2019. All rights reserved.