public enum XBParserMode extends java.lang.Enum<XBParserMode>
Enum Constant and Description |
---|
FULL
Parsing includes both header and extended part / tail.
|
SINGLE_BLOCK
Parsing only generates single block - skips both header and tail.
|
SKIP_EXTENDED
Skips extended part / tail.
|
SKIP_HEAD
Skips header.
|
Modifier and Type | Method and Description |
---|---|
static XBParserMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XBParserMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XBParserMode FULL
public static final XBParserMode SINGLE_BLOCK
public static final XBParserMode SKIP_HEAD
public static final XBParserMode SKIP_EXTENDED
public static XBParserMode[] values()
for (XBParserMode c : XBParserMode.values()) System.out.println(c);
public static XBParserMode 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