public static enum ParseIssue.Category.Values extends java.lang.Enum<ParseIssue.Category.Values>
enum
representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
Enum Constant and Description |
---|
_UNKNOWN
Special
enum constant which is used to represent constants
that do not exist in this enumeration binding. |
ATTRIBUTE_ILLEGAL
Represents
ParseIssue.Category.ATTRIBUTE_ILLEGAL . |
ATTRIBUTE_REQUIRED
Represents
ParseIssue.Category.ATTRIBUTE_REQUIRED . |
ELEMENT_ILLEGAL
Represents
ParseIssue.Category.ELEMENT_ILLEGAL . |
ELEMENT_REQUIRED
Represents
ParseIssue.Category.ELEMENT_REQUIRED . |
ELEMENT_UNKNOWN
Represents
ParseIssue.Category.ELEMENT_UNKNOWN . |
EXPORT_ERROR
Represents
ParseIssue.Category.EXPORT_ERROR . |
GENERATE_ERROR
Represents
ParseIssue.Category.GENERATE_ERROR . |
INTERNAL_ERROR
Represents
ParseIssue.Category.INTERNAL_ERROR . |
PARSE_ERROR
Represents
ParseIssue.Category.PARSE_ERROR . |
SECTION_RESTRICTION
Represents
ParseIssue.Category.SECTION_RESTRICTION . |
SECTION_UNKNOWN
Represents
ParseIssue.Category.SECTION_UNKNOWN . |
VALIDATION_ERROR
Represents
ParseIssue.Category.VALIDATION_ERROR . |
VALUE_ILLEGAL
Represents
ParseIssue.Category.VALUE_ILLEGAL . |
Modifier and Type | Method and Description |
---|---|
static ParseIssue.Category.Values |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParseIssue.Category.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParseIssue.Category.Values VALUE_ILLEGAL
ParseIssue.Category.VALUE_ILLEGAL
.public static final ParseIssue.Category.Values ATTRIBUTE_REQUIRED
ParseIssue.Category.ATTRIBUTE_REQUIRED
.public static final ParseIssue.Category.Values ATTRIBUTE_ILLEGAL
ParseIssue.Category.ATTRIBUTE_ILLEGAL
.public static final ParseIssue.Category.Values ELEMENT_REQUIRED
ParseIssue.Category.ELEMENT_REQUIRED
.public static final ParseIssue.Category.Values ELEMENT_ILLEGAL
ParseIssue.Category.ELEMENT_ILLEGAL
.public static final ParseIssue.Category.Values ELEMENT_UNKNOWN
ParseIssue.Category.ELEMENT_UNKNOWN
.public static final ParseIssue.Category.Values SECTION_UNKNOWN
ParseIssue.Category.SECTION_UNKNOWN
.public static final ParseIssue.Category.Values SECTION_RESTRICTION
ParseIssue.Category.SECTION_RESTRICTION
.public static final ParseIssue.Category.Values PARSE_ERROR
ParseIssue.Category.PARSE_ERROR
.public static final ParseIssue.Category.Values GENERATE_ERROR
ParseIssue.Category.GENERATE_ERROR
.public static final ParseIssue.Category.Values VALIDATION_ERROR
ParseIssue.Category.VALIDATION_ERROR
.public static final ParseIssue.Category.Values EXPORT_ERROR
ParseIssue.Category.EXPORT_ERROR
.public static final ParseIssue.Category.Values INTERNAL_ERROR
ParseIssue.Category.INTERNAL_ERROR
.public static final ParseIssue.Category.Values _UNKNOWN
enum
constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN
constant, because its version
of the native Java enum
lacks the new constant.public static ParseIssue.Category.Values[] values()
for (ParseIssue.Category.Values c : ParseIssue.Category.Values.values()) System.out.println(c);
public static ParseIssue.Category.Values 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