public static enum Join.Mood extends Enum<Join.Mood>
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="imp"/>
<enumeration value="sub"/>
<enumeration value="ind"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
imp
The speaker uses imperative to order or ask the addressee to do the action of the verb.
|
ind
A verb in indicative merely states that something happens, has happened or will happen.
|
sub
The subjunctive mood is used under certain circumstances in subordinate clauses, typically for actions that are subjective or otherwise uncertain.
|
| Modifier and Type | Method and Description |
|---|---|
static Join.Mood |
fromValue(String v) |
String |
value() |
static Join.Mood |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Join.Mood[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Join.Mood imp
public static final Join.Mood sub
public static final Join.Mood ind
public static Join.Mood[] values()
for (Join.Mood c : Join.Mood.values()) System.out.println(c);
public static Join.Mood 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()
Copyright © 2018–2019 Fryske Akademy. All rights reserved.