public static enum Word.WordData extends Enum<Word.WordData>
| Modifier and Type | Method and Description |
|---|---|
static Word.WordData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Word.WordData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Word.WordData Form
public static final Word.WordData Lemma
public static final Word.WordData POS
public static final Word.WordData Deprel
public static final Word.WordData Pred
public static Word.WordData[] values()
for (Word.WordData c : Word.WordData.values()) System.out.println(c);
public static Word.WordData 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 © 2016. All rights reserved.