public enum XmlInflection extends Enum<XmlInflection>
Java class for inflection.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="inflection">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="GRECO_LATIN_REGULAR"/>
<enumeration value="IRREGULAR"/>
<enumeration value="REGULAR"/>
<enumeration value="REGULAR_DOUBLE"/>
<enumeration value="UNCOUNT"/>
<enumeration value="INVARIANT"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
GRECO_LATIN_REGULAR |
INVARIANT |
IRREGULAR |
REGULAR |
REGULAR_DOUBLE |
UNCOUNT |
| Modifier and Type | Method and Description |
|---|---|
static XmlInflection |
fromValue(String v) |
String |
value() |
static XmlInflection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlInflection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlInflection GRECO_LATIN_REGULAR
public static final XmlInflection IRREGULAR
public static final XmlInflection REGULAR
public static final XmlInflection REGULAR_DOUBLE
public static final XmlInflection UNCOUNT
public static final XmlInflection INVARIANT
public static XmlInflection[] values()
for (XmlInflection c : XmlInflection.values()) System.out.println(c);
public static XmlInflection 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 XmlInflection fromValue(String v)
Copyright © 2020. All Rights Reserved.