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