public enum ValidationDomain extends Enum<ValidationDomain>
ValidationMessage| Enum Constant and Description |
|---|
REF_RESOLVING
Ref resolution
|
SYNTAX
Syntax validation
|
VALIDATION
Instance validation
|
| Modifier and Type | Field and Description |
|---|---|
private String |
domain
The domain as a string
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ValidationDomain |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationDomain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationDomain REF_RESOLVING
This can cover ref resolution proper (ie, JSON Reference resolution) but also all associated mechanism, such as JSON Schema retrieval, URI building, etc.
public static final ValidationDomain SYNTAX
public static final ValidationDomain VALIDATION
private final String domain
public static ValidationDomain[] values()
for (ValidationDomain c : ValidationDomain.values()) System.out.println(c);
public static ValidationDomain 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 nullpublic String toString()
toString in class Enum<ValidationDomain>Copyright © 2012. All Rights Reserved.