public static enum XmlRepresentation.Type extends Enum<XmlRepresentation.Type>
Enum Constant and Description |
---|
ABSTRACT |
CONTENT |
ELEMENT |
ENTITY |
ENUM |
EXTEND |
IGNORE |
PCDATA |
Modifier and Type | Method and Description |
---|---|
static XmlRepresentation.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlRepresentation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlRepresentation.Type IGNORE
public static final XmlRepresentation.Type ELEMENT
public static final XmlRepresentation.Type ABSTRACT
public static final XmlRepresentation.Type EXTEND
public static final XmlRepresentation.Type ENTITY
public static final XmlRepresentation.Type PCDATA
public static final XmlRepresentation.Type CONTENT
public static final XmlRepresentation.Type ENUM
public static XmlRepresentation.Type[] values()
for (XmlRepresentation.Type c : XmlRepresentation.Type.values()) System.out.println(c);
public static XmlRepresentation.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullsee also the complete user documentation .