public enum ValidationOptions extends Enum<ValidationOptions>
Enum Constant and Description |
---|
BASIC
This option is for keeping the validation behavior same for older clients.
|
FULL
Validate the given data against the FDM schema - a full fledged validation with all constraints will run
|
OFF
Do not run any validation
|
Modifier and Type | Method and Description |
---|---|
static ValidationOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationOptions FULL
public static final ValidationOptions OFF
public static final ValidationOptions BASIC
public static ValidationOptions[] values()
for (ValidationOptions c : ValidationOptions.values()) System.out.println(c);
public static ValidationOptions 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 © 1982–2023 Adobe Systems Incorporated. All rights reserved.