|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<NonFiniteForm>
de.tudarmstadt.ukp.jwktl.api.util.NonFiniteForm
public enum NonFiniteForm
Enumeration for modelling non-finite IWiktionaryWordForm
s.
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 Summary | |
---|---|
INFINITIVE
The infinitive form of a verb (e.g., "(to) do"). |
|
PARTICIPLE
The participle form of a verb (e.g., "done"). |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final NonFiniteForm INFINITIVE
public static final NonFiniteForm PARTICIPLE
GrammaticalTense
.
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |