public enum XSDCompositor extends java.lang.Enum<XSDCompositor> implements Enumerator
Enum Constant and Description |
---|
ALL_LITERAL
The 'All' literal object.
|
CHOICE_LITERAL
The 'Choice' literal object.
|
SEQUENCE_LITERAL
The 'Sequence' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
ALL
The 'All' literal value.
|
static int |
CHOICE
The 'Choice' literal value.
|
static int |
SEQUENCE
The 'Sequence' literal value.
|
static java.util.List<XSDCompositor> |
VALUES
A public read-only list of all the 'Compositor' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static XSDCompositor |
get(int value)
Returns the 'Compositor' literal with the specified integer value.
|
static XSDCompositor |
get(java.lang.String literal)
Returns the 'Compositor' literal with the specified literal value.
|
static XSDCompositor |
getByName(java.lang.String name)
Returns the 'Compositor' 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 XSDCompositor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XSDCompositor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XSDCompositor ALL_LITERAL
ALL
public static final XSDCompositor CHOICE_LITERAL
CHOICE
public static final XSDCompositor SEQUENCE_LITERAL
SEQUENCE
public static final int ALL
This is used to indicate that a model group is an all.
ALL_LITERAL
,
Constant Field Valuespublic static final int CHOICE
This is used to indicate that a model group is a choice.
CHOICE_LITERAL
,
Constant Field Valuespublic static final int SEQUENCE
This is used to indicate that a model group is a sequence.
SEQUENCE_LITERAL
,
Constant Field Valuespublic static final java.util.List<XSDCompositor> VALUES
public static XSDCompositor[] values()
for (XSDCompositor c : XSDCompositor.values()) System.out.println(c);
public static XSDCompositor 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 XSDCompositor get(java.lang.String literal)
public static XSDCompositor getByName(java.lang.String name)
public static XSDCompositor 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<XSDCompositor>