public static enum Element.ElementType extends Enum<Element.ElementType>
Enum Constant and Description |
---|
characters
Extra meta characters in xml.
|
comment
The xml comments in xml.
|
element
The normale ElementType, which is mostly bound to an object.
|
ignorableWhitespace
ignorableWhitespace in xml
|
overrideSax
Receive raw sax event on elementObject
|
Modifier and Type | Method and Description |
---|---|
static List<Element> |
filterElements(List<Element> elements,
Element.ElementType elementType) |
static Element.ElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Element.ElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Element.ElementType element
public static final Element.ElementType characters
public static final Element.ElementType comment
public static final Element.ElementType ignorableWhitespace
public static final Element.ElementType overrideSax
public static Element.ElementType[] values()
for (Element.ElementType c : Element.ElementType.values()) System.out.println(c);
public static Element.ElementType 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 nullpublic static List<Element> filterElements(List<Element> elements, Element.ElementType elementType)
Copyright © 2004-2012 X4O. All Rights Reserved.