public static enum CmsXmlContentDefinition.SequenceType extends java.lang.Enum<CmsXmlContentDefinition.SequenceType>
| Enum Constant and Description |
|---|
MULTIPLE_CHOICE
A
xsd:choice where the choice elements can appear more than once in a mix. |
SEQUENCE
A simple
xsd:sequence. |
SINGLE_CHOICE
A
xsd:choice where only one choice element can be selected. |
| Modifier and Type | Method and Description |
|---|---|
static CmsXmlContentDefinition.SequenceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsXmlContentDefinition.SequenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsXmlContentDefinition.SequenceType MULTIPLE_CHOICE
xsd:choice where the choice elements can appear more than once in a mix.public static final CmsXmlContentDefinition.SequenceType SEQUENCE
xsd:sequence.public static final CmsXmlContentDefinition.SequenceType SINGLE_CHOICE
xsd:choice where only one choice element can be selected.public static CmsXmlContentDefinition.SequenceType[] values()
for (CmsXmlContentDefinition.SequenceType c : CmsXmlContentDefinition.SequenceType.values()) System.out.println(c);
public static CmsXmlContentDefinition.SequenceType 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 null