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