public enum XBParserState extends java.lang.Enum<XBParserState>
Enum Constant and Description |
---|
ATTRIBUTE_PART
Inside or at the end of attribute part.
|
BLOCK_BEGIN
Start of block or block expected.
|
BLOCK_END
End of block or end of multiple blocks.
|
BLOCK_TYPE
Inside or at the end of block type.
|
DATA_PART
Inside or at the end of data part.
|
EOF
End of parsing.
|
EXTENDED_AREA
Inside extended part.
|
CHILDREN_PART
Inside or at the end of children part.
|
START
Start of file (before Head).
|
Modifier and Type | Method and Description |
---|---|
static XBParserState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XBParserState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XBParserState START
public static final XBParserState BLOCK_BEGIN
public static final XBParserState BLOCK_TYPE
public static final XBParserState ATTRIBUTE_PART
public static final XBParserState DATA_PART
public static final XBParserState CHILDREN_PART
public static final XBParserState EXTENDED_AREA
public static final XBParserState BLOCK_END
public static final XBParserState EOF
public static XBParserState[] values()
for (XBParserState c : XBParserState.values()) System.out.println(c);
public static XBParserState 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