public enum XSDOrdered extends java.lang.Enum<XSDOrdered> implements Enumerator
Enum Constant and Description |
---|
FALSE_LITERAL
The 'False' literal object.
|
PARTIAL_LITERAL
The 'Partial' literal object.
|
TOTAL_LITERAL
The 'Total' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
FALSE
The 'False' literal value.
|
static int |
PARTIAL
The 'Partial' literal value.
|
static int |
TOTAL
The 'Total' literal value.
|
static java.util.List<XSDOrdered> |
VALUES
A public read-only list of all the 'Ordered' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDOrdered |
get(int value)
Returns the 'Ordered' literal with the specified integer value.
|
static XSDOrdered |
get(java.lang.String literal)
Returns the 'Ordered' literal with the specified literal value.
|
static XSDOrdered |
getByName(java.lang.String name)
Returns the 'Ordered' 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 XSDOrdered |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDOrdered[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDOrdered FALSE_LITERAL
FALSE
public static final XSDOrdered PARTIAL_LITERAL
PARTIAL
public static final XSDOrdered TOTAL_LITERAL
TOTAL
public static final int FALSE
This is used to indicate that a simple type definition's value space is unordered.
FALSE_LITERAL
,
Constant Field Valuespublic static final int PARTIAL
This is used to indicate that a simple type definition's value space is partially ordered.
PARTIAL_LITERAL
,
Constant Field Valuespublic static final int TOTAL
This is used to indicate that a simple type definition's value space is ordered.
TOTAL_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDOrdered> VALUES
public static XSDOrdered[] values()
for (XSDOrdered c : XSDOrdered.values()) System.out.println(c);
public static XSDOrdered 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 XSDOrdered get(java.lang.String literal)
public static XSDOrdered getByName(java.lang.String name)
public static XSDOrdered 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<XSDOrdered>