public enum LexemeTypes extends Enum<LexemeTypes>
| Enum Constant and Description |
|---|
ANOTHER_MARK
Things like --
|
CLOSING_PUNCTUATION_MARK
Opening: The "new
|
COMPOUND_WORD_SEQUENCE |
HYPHEN |
NUMBER |
OPENING_PUNCTUATION_MARK
Closing: new old"
normal punctuation: It is it, isn't it?
|
WORD |
| Modifier and Type | Method and Description |
|---|---|
static LexemeTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LexemeTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LexemeTypes WORD
public static final LexemeTypes COMPOUND_WORD_SEQUENCE
public static final LexemeTypes OPENING_PUNCTUATION_MARK
normal punctuation: It is it, isn't it?
public static final LexemeTypes CLOSING_PUNCTUATION_MARK
public static final LexemeTypes ANOTHER_MARK
public static final LexemeTypes NUMBER
public static final LexemeTypes HYPHEN
public static LexemeTypes[] values()
for (LexemeTypes c : LexemeTypes.values()) System.out.println(c);
public static LexemeTypes 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 © 2012–2017 CoGrOO. All rights reserved.