public enum XSDVariety extends java.lang.Enum<XSDVariety> implements Enumerator
Enum Constant and Description |
---|
ATOMIC_LITERAL
The 'Atomic' literal object.
|
LIST_LITERAL
The 'List' literal object.
|
UNION_LITERAL
The 'Union' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
ATOMIC
The 'Atomic' literal value.
|
static int |
LIST
The 'List' literal value.
|
static int |
UNION
The 'Union' literal value.
|
static java.util.List<XSDVariety> |
VALUES
A public read-only list of all the 'Variety' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDVariety |
get(int value)
Returns the 'Variety' literal with the specified integer value.
|
static XSDVariety |
get(java.lang.String literal)
Returns the 'Variety' literal with the specified literal value.
|
static XSDVariety |
getByName(java.lang.String name)
Returns the '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 XSDVariety |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDVariety[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDVariety ATOMIC_LITERAL
ATOMIC
public static final XSDVariety LIST_LITERAL
LIST
public static final XSDVariety UNION_LITERAL
UNION
public static final int ATOMIC
This is used to indicate that a simple type definition is atomic.
ATOMIC_LITERAL
,
Constant Field Valuespublic static final int LIST
This is used to indicate that a simple type definition is a list.
LIST_LITERAL
,
Constant Field Valuespublic static final int UNION
This is used to indicate that a simple type definition is a union.
UNION_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDVariety> VALUES
public static XSDVariety[] values()
for (XSDVariety c : XSDVariety.values()) System.out.println(c);
public static XSDVariety 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 XSDVariety get(java.lang.String literal)
public static XSDVariety getByName(java.lang.String name)
public static XSDVariety 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<XSDVariety>