public enum XSDProhibitedSubstitutions extends java.lang.Enum<XSDProhibitedSubstitutions> 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<XSDProhibitedSubstitutions> |
VALUES
A public read-only list of all the 'Prohibited Substitutions' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDProhibitedSubstitutions |
get(int value)
Returns the 'Prohibited Substitutions' literal with the specified integer value.
|
static XSDProhibitedSubstitutions |
get(java.lang.String literal)
Returns the 'Prohibited Substitutions' literal with the specified literal value.
|
static XSDProhibitedSubstitutions |
getByName(java.lang.String name)
Returns the 'Prohibited 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 XSDProhibitedSubstitutions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDProhibitedSubstitutions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDProhibitedSubstitutions EXTENSION_LITERAL
EXTENSION
public static final XSDProhibitedSubstitutions RESTRICTION_LITERAL
RESTRICTION
public static final XSDProhibitedSubstitutions ALL_LITERAL
ALL
public static final int EXTENSION
This is used to indicate that types derived via extension will not be permitted to validate content.
EXTENSION_LITERAL
,
Constant Field Valuespublic static final int RESTRICTION
This is used to indicate that types derived via restriction will not be permitted to validate content.
RESTRICTION_LITERAL
,
Constant Field Valuespublic static final int ALL
This is used to indicate that derived types will not be permitted to validate content. It is literally expanded to extension and restriction in the infoset model.
ALL_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDProhibitedSubstitutions> VALUES
public static XSDProhibitedSubstitutions[] values()
for (XSDProhibitedSubstitutions c : XSDProhibitedSubstitutions.values()) System.out.println(c);
public static XSDProhibitedSubstitutions 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 XSDProhibitedSubstitutions get(java.lang.String literal)
public static XSDProhibitedSubstitutions getByName(java.lang.String name)
public static XSDProhibitedSubstitutions 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<XSDProhibitedSubstitutions>