public enum XmlLexicalCategory extends Enum<XmlLexicalCategory>
Java class for lexicalCategory.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="lexicalCategory">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ANY"/>
<enumeration value="SYMBOL"/>
<enumeration value="NOUN"/>
<enumeration value="ADJECTIVE"/>
<enumeration value="ADVERB"/>
<enumeration value="VERB"/>
<enumeration value="DETERMINER"/>
<enumeration value="PRONOUN"/>
<enumeration value="CONJUNCTION"/>
<enumeration value="PREPOSITION"/>
<enumeration value="COMPLEMENTISER"/>
<enumeration value="MODAL"/>
<enumeration value="AUXILIARY"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADJECTIVE |
ADVERB |
ANY |
AUXILIARY |
COMPLEMENTISER |
CONJUNCTION |
DETERMINER |
MODAL |
NOUN |
PREPOSITION |
PRONOUN |
SYMBOL |
VERB |
| Modifier and Type | Method and Description |
|---|---|
static XmlLexicalCategory |
fromValue(String v) |
String |
value() |
static XmlLexicalCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlLexicalCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlLexicalCategory ANY
public static final XmlLexicalCategory SYMBOL
public static final XmlLexicalCategory NOUN
public static final XmlLexicalCategory ADJECTIVE
public static final XmlLexicalCategory ADVERB
public static final XmlLexicalCategory VERB
public static final XmlLexicalCategory DETERMINER
public static final XmlLexicalCategory PRONOUN
public static final XmlLexicalCategory CONJUNCTION
public static final XmlLexicalCategory PREPOSITION
public static final XmlLexicalCategory COMPLEMENTISER
public static final XmlLexicalCategory MODAL
public static final XmlLexicalCategory AUXILIARY
public static XmlLexicalCategory[] values()
for (XmlLexicalCategory c : XmlLexicalCategory.values()) System.out.println(c);
public static XmlLexicalCategory 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 XmlLexicalCategory fromValue(String v)
Copyright © 2020. All Rights Reserved.