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