public static enum SimpleParser.ParsingState extends Enum<SimpleParser.ParsingState>
Enum Constant and Description |
---|
COMMENT |
INVALID |
META |
META_EOS |
STATEMENT |
STATEMENT_EOS |
TOK_START |
WITHIN_QUOTE |
Modifier and Type | Method and Description |
---|---|
static SimpleParser.ParsingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleParser.ParsingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleParser.ParsingState TOK_START
public static final SimpleParser.ParsingState META
public static final SimpleParser.ParsingState STATEMENT
public static final SimpleParser.ParsingState WITHIN_QUOTE
public static final SimpleParser.ParsingState COMMENT
public static final SimpleParser.ParsingState INVALID
public static final SimpleParser.ParsingState STATEMENT_EOS
public static final SimpleParser.ParsingState META_EOS
public static SimpleParser.ParsingState[] values()
for (SimpleParser.ParsingState c : SimpleParser.ParsingState.values()) System.out.println(c);
public static SimpleParser.ParsingState 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 © 2014 Apache Software Foundation. All Rights Reserved.