public static enum Join.Person extends Enum<Join.Person>
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="first"/>
<enumeration value="second"/>
<enumeration value="third"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
first
The first person refers just to the speaker / author and in plural one or more additional persons.
|
second
The second person refers to the addressee(s).
|
third
The third person refers to one or more persons that are neither speakers nor addressees.
|
| Modifier and Type | Method and Description |
|---|---|
static Join.Person |
fromValue(String v) |
String |
value() |
static Join.Person |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Join.Person[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Join.Person first
public static final Join.Person second
public static final Join.Person third
public static Join.Person[] values()
for (Join.Person c : Join.Person.values()) System.out.println(c);
public static Join.Person 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.Person fromValue(String v)
Copyright © 2018–2019 Fryske Akademy. All rights reserved.