public static enum ParserInfo.ParseMethod extends java.lang.Enum<ParserInfo.ParseMethod>
Enum Constant and Description |
---|
DistributedParse |
SequentialParse |
StreamParse |
Modifier and Type | Method and Description |
---|---|
static ParserInfo.ParseMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParserInfo.ParseMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParserInfo.ParseMethod StreamParse
public static final ParserInfo.ParseMethod DistributedParse
public static final ParserInfo.ParseMethod SequentialParse
public static ParserInfo.ParseMethod[] values()
for (ParserInfo.ParseMethod c : ParserInfo.ParseMethod.values()) System.out.println(c);
public static ParserInfo.ParseMethod 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