public static enum XsdValidation.Result extends Enum<XsdValidation.Result>
Enum Constant and Description |
---|
FAILURE
A serious error prevented the validation from completing.
|
NOT_FOUND
The document did not exist (for instance an HTTP 404).
|
SUCCESS
The validation completed, possibly with some errors or warnings.
|
Modifier and Type | Method and Description |
---|---|
static XsdValidation.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XsdValidation.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XsdValidation.Result NOT_FOUND
public static final XsdValidation.Result FAILURE
public static final XsdValidation.Result SUCCESS
public static XsdValidation.Result[] values()
for (XsdValidation.Result c : XsdValidation.Result.values()) System.out.println(c);
public static XsdValidation.Result 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 © 2025 Central Laboratory of the Research Councils. All Rights Reserved.