public enum XmlElementType extends Enum<XmlElementType>
| Enum Constant and Description |
|---|
EMPTY_ELEMENT |
FULL_ELEMENT |
UNCLOSED_ELEMENT |
| Modifier and Type | Method and Description |
|---|---|
static XmlElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlElementType FULL_ELEMENT
public static final XmlElementType EMPTY_ELEMENT
public static final XmlElementType UNCLOSED_ELEMENT
public static XmlElementType[] values()
for (XmlElementType c : XmlElementType.values()) System.out.println(c);
public static XmlElementType 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 nullCopyright © 2010-2012 University of Erlangen-Nürnberg - Open Source Research Group. All Rights Reserved.