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