public enum XSDXPathVariety extends java.lang.Enum<XSDXPathVariety> implements Enumerator
Enum Constant and Description |
---|
FIELD_LITERAL
The 'Field' literal object.
|
SELECTOR_LITERAL
The 'Selector' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
FIELD
The 'Field' literal value.
|
static int |
SELECTOR
The 'Selector' literal value.
|
static java.util.List<XSDXPathVariety> |
VALUES
A public read-only list of all the 'XPath Variety' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDXPathVariety |
get(int value)
Returns the 'XPath Variety' literal with the specified integer value.
|
static XSDXPathVariety |
get(java.lang.String literal)
Returns the 'XPath Variety' literal with the specified literal value.
|
static XSDXPathVariety |
getByName(java.lang.String name)
Returns the 'XPath Variety' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static XSDXPathVariety |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDXPathVariety[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDXPathVariety SELECTOR_LITERAL
SELECTOR
public static final XSDXPathVariety FIELD_LITERAL
FIELD
public static final int SELECTOR
This is used to indicate that the XPath definition is a selector.
SELECTOR_LITERAL
,
Constant Field Valuespublic static final int FIELD
This is used to indicate that the XPath definition is a field.
FIELD_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDXPathVariety> VALUES
public static XSDXPathVariety[] values()
for (XSDXPathVariety c : XSDXPathVariety.values()) System.out.println(c);
public static XSDXPathVariety valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static XSDXPathVariety get(java.lang.String literal)
public static XSDXPathVariety getByName(java.lang.String name)
public static XSDXPathVariety get(int value)
public int getValue()
getValue
in interface Enumerator
public java.lang.String getName()
getName
in interface Enumerator
public java.lang.String getLiteral()
getLiteral
in interface Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<XSDXPathVariety>