public enum XSDSimpleFinal extends java.lang.Enum<XSDSimpleFinal> implements Enumerator
Enum Constant and Description |
---|
ALL_LITERAL
The 'All' literal object.
|
LIST_LITERAL
The 'List' literal object.
|
RESTRICTION_LITERAL
The 'Restriction' literal object.
|
UNION_LITERAL
The 'Union' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
ALL
The 'All' literal value.
|
static int |
LIST
The 'List' literal value.
|
static int |
RESTRICTION
The 'Restriction' literal value.
|
static int |
UNION
The 'Union' literal value.
|
static java.util.List<XSDSimpleFinal> |
VALUES
A public read-only list of all the 'Simple Final' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDSimpleFinal |
get(int value)
Returns the 'Simple Final' literal with the specified integer value.
|
static XSDSimpleFinal |
get(java.lang.String literal)
Returns the 'Simple Final' literal with the specified literal value.
|
static XSDSimpleFinal |
getByName(java.lang.String name)
Returns the 'Simple Final' 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 XSDSimpleFinal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDSimpleFinal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDSimpleFinal LIST_LITERAL
LIST
public static final XSDSimpleFinal RESTRICTION_LITERAL
RESTRICTION
public static final XSDSimpleFinal UNION_LITERAL
UNION
public static final XSDSimpleFinal ALL_LITERAL
ALL
public static final int LIST
This is used to indicate that no derivation via list is allowed for a simple type definition.
LIST_LITERAL
,
Constant Field Valuespublic static final int RESTRICTION
This is used to indicate that no derivation via restriction is allowed for a simple type definition.
RESTRICTION_LITERAL
,
Constant Field Valuespublic static final int UNION
This is used to indicate that no derivation via union is allowed for a simple type definition.
UNION_LITERAL
,
Constant Field Valuespublic static final int ALL
This is used to indicate that no derivation is allowed for a simple type definition. It is literally expanded to list, restriction, and union in the infoset model.
ALL_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDSimpleFinal> VALUES
public static XSDSimpleFinal[] values()
for (XSDSimpleFinal c : XSDSimpleFinal.values()) System.out.println(c);
public static XSDSimpleFinal 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 XSDSimpleFinal get(java.lang.String literal)
public static XSDSimpleFinal getByName(java.lang.String name)
public static XSDSimpleFinal 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<XSDSimpleFinal>