public static enum LexicalFSA.State extends Enum<LexicalFSA.State>
| Enum Constant and Description |
|---|
BETWEEN_TOKENS |
ERROR |
IN_AT_NAME |
IN_HASH_TAG |
IN_WORD |
ON_AMPERSAND |
ON_AT |
ON_DIGIT |
ON_DOT |
ON_ELLIPSIS |
ON_EPOINT_OR_QMARK |
ON_HASH |
ON_HYPHEN |
ON_PUNCT |
ON_UNKNOWN |
START |
URL |
| Modifier and Type | Method and Description |
|---|---|
static LexicalFSA.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LexicalFSA.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LexicalFSA.State START
public static final LexicalFSA.State ON_HASH
public static final LexicalFSA.State ON_AT
public static final LexicalFSA.State ON_AMPERSAND
public static final LexicalFSA.State ON_DOT
public static final LexicalFSA.State ON_PUNCT
public static final LexicalFSA.State ON_HYPHEN
public static final LexicalFSA.State IN_WORD
public static final LexicalFSA.State IN_AT_NAME
public static final LexicalFSA.State IN_HASH_TAG
public static final LexicalFSA.State ON_DIGIT
public static final LexicalFSA.State BETWEEN_TOKENS
public static final LexicalFSA.State ON_EPOINT_OR_QMARK
public static final LexicalFSA.State ON_ELLIPSIS
public static final LexicalFSA.State URL
public static final LexicalFSA.State ON_UNKNOWN
public static final LexicalFSA.State ERROR
public static LexicalFSA.State[] values()
for (LexicalFSA.State c : LexicalFSA.State.values()) System.out.println(c);
public static LexicalFSA.State 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 © 2017. All rights reserved.