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