public static enum ParserState.Error extends Enum<ParserState.Error>
| Modifier and Type | Method and Description |
|---|---|
static ParserState.Error |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParserState.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParserState.Error ATTR_COUNT_LIMIT_EXCEEDED
public static final ParserState.Error ATTR_NAME_LENGTH_LIMIT_EXCEEDED
public static final ParserState.Error ATTR_VALUE_LENGTH_LIMIT_EXCEEDED
public static final ParserState.Error ELEMENT_NAME_SIZE_LIMIT_EXCEEDED
public static final ParserState.Error ELEMENT_VALUE_SIZE_LIMIT_EXCEEDED
public static final ParserState.Error INVALID_ENTITY
public static final ParserState.Error CHAR_NOT_ALLOWED
public static final ParserState.Error CLOSE_ELEMENT_BEFORE_OPEN
public static final ParserState.Error MALFORMED_XML
public static final ParserState.Error UNKNOWN
public static ParserState.Error[] values()
for (ParserState.Error c : ParserState.Error.values()) System.out.println(c);
public static ParserState.Error 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.