public static enum Join.Tense extends Enum<Join.Tense>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="past"/>
<enumeration value="pres"/>
<enumeration value="fut"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
fut
future tense
|
past
past tense
|
pres
present tense
|
| Modifier and Type | Method and Description |
|---|---|
static Join.Tense |
fromValue(String v) |
String |
value() |
static Join.Tense |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Join.Tense[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Join.Tense past
public static final Join.Tense pres
public static final Join.Tense fut
public static Join.Tense[] values()
for (Join.Tense c : Join.Tense.values()) System.out.println(c);
public static Join.Tense 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 nullpublic String value()
public static Join.Tense fromValue(String v)
Copyright © 2018–2019 Fryske Akademy. All rights reserved.