public enum XSDSubstitutionGroupExclusions extends java.lang.Enum<XSDSubstitutionGroupExclusions> implements Enumerator
Enum Constant and Description |
---|
EXTENSION_LITERAL
The 'Extension' literal object.
|
RESTRICTION_LITERAL
The 'Restriction' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
EXTENSION
The 'Extension' literal value.
|
static int |
RESTRICTION
The 'Restriction' literal value.
|
static java.util.List<XSDSubstitutionGroupExclusions> |
VALUES
A public read-only list of all the 'Substitution Group Exclusions' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDSubstitutionGroupExclusions |
get(int value)
Returns the 'Substitution Group Exclusions' literal with the specified integer value.
|
static XSDSubstitutionGroupExclusions |
get(java.lang.String literal)
Returns the 'Substitution Group Exclusions' literal with the specified literal value.
|
static XSDSubstitutionGroupExclusions |
getByName(java.lang.String name)
Returns the 'Substitution Group Exclusions' 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 XSDSubstitutionGroupExclusions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDSubstitutionGroupExclusions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDSubstitutionGroupExclusions EXTENSION_LITERAL
EXTENSION
public static final XSDSubstitutionGroupExclusions RESTRICTION_LITERAL
RESTRICTION
public static final int EXTENSION
This is used to indicate that an element with a type derived via extension may not be nominated to an element declaration's substitution group.
EXTENSION_LITERAL
,
Constant Field Valuespublic static final int RESTRICTION
This is used to indicate that an element with a type derived via restriction may not be nominated to an element declaration's substitution group.
RESTRICTION_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDSubstitutionGroupExclusions> VALUES
public static XSDSubstitutionGroupExclusions[] values()
for (XSDSubstitutionGroupExclusions c : XSDSubstitutionGroupExclusions.values()) System.out.println(c);
public static XSDSubstitutionGroupExclusions 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 XSDSubstitutionGroupExclusions get(java.lang.String literal)
public static XSDSubstitutionGroupExclusions getByName(java.lang.String name)
public static XSDSubstitutionGroupExclusions 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<XSDSubstitutionGroupExclusions>