|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GrammaticalTense>
de.tudarmstadt.ukp.jwktl.api.util.GrammaticalTense
public enum GrammaticalTense
Enumeration of the grammatical tense of a IWiktionaryWordForm
.
Note that tense is often combined with verb aspects (e.g., present
perfect). Such combinations can be modeled in combination with
enumeration values from GrammaticalAspect
.
Enum Constant Summary | |
---|---|
FUTURE
The future; an utterance refers to the time after a reference time. |
|
PAST
The past; an utterance refers to the time before a reference time. |
|
PRESENT
The present; an utterance refers to the reference time. |
Method Summary | |
---|---|
static GrammaticalTense |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GrammaticalTense[] |
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 GrammaticalTense PAST
public static final GrammaticalTense PRESENT
public static final GrammaticalTense FUTURE
Method Detail |
---|
public static GrammaticalTense[] values()
for (GrammaticalTense c : GrammaticalTense.values()) System.out.println(c);
public static GrammaticalTense 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 |