public static enum Parser.ParserState extends Enum<Parser.ParserState>
Enum Constant and Description |
---|
COLLECT_ALL |
COLLECT_CMD_ECHO |
COLLECT_DATA_OR_RESPONSE |
Modifier and Type | Method and Description |
---|---|
static Parser.ParserState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.ParserState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.ParserState COLLECT_ALL
public static final Parser.ParserState COLLECT_CMD_ECHO
public static final Parser.ParserState COLLECT_DATA_OR_RESPONSE
public static Parser.ParserState[] values()
for (Parser.ParserState c : Parser.ParserState.values()) System.out.println(c);
public static Parser.ParserState 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 © 2009–2015 atmodem4j. All rights reserved.