public enum NonFiniteForm extends Enum<NonFiniteForm>
IWiktionaryWordForms.
Although other form properties (like GrammaticalTense) are
predominantly used to represent finite forms, such properties can
also be used to describe non-finite forms. For example, the English
present participle (tense = PRESENT) and past participle (tense = PAST).| Enum Constant and Description |
|---|
INFINITIVE
The infinitive form of a verb (e.g., "(to) do").
|
PARTICIPLE
The participle form of a verb (e.g., "done").
|
| Modifier and Type | Method and Description |
|---|---|
static NonFiniteForm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NonFiniteForm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NonFiniteForm INFINITIVE
public static final NonFiniteForm PARTICIPLE
GrammaticalTense.public static NonFiniteForm[] values()
for (NonFiniteForm c : NonFiniteForm.values()) System.out.println(c);
public static NonFiniteForm 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 © 2011-2016 Ubiquitous Knowledge Processing (UKP) Lab. All Rights Reserved.