public enum DomNodeType extends Enum<DomNodeType>
Enum Constant and Description |
---|
DEFAULT
Default dom node type.
|
LINK
Link dom node type.
|
LIST
List dom node type.
|
LIST_ITEM
List item dom node type.
|
TABLE
Table dom node type.
|
TABLE_CELL
Table cell dom node type.
|
TABLE_ROW
Table row dom node type.
|
TEXT
Text dom node type.
|
Modifier and Type | Method and Description |
---|---|
static DomNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DomNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DomNodeType DEFAULT
DomNode
,
DefaultDomNode
public static final DomNodeType TEXT
TextDomNode
public static final DomNodeType LINK
LinkDomNode
public static final DomNodeType LIST
ListDomNode
public static final DomNodeType LIST_ITEM
ListDomNode.appendChild()
public static final DomNodeType TABLE
TableDomNode
,
Table
public static final DomNodeType TABLE_ROW
TableRowDomNode
public static final DomNodeType TABLE_CELL
TableCell
public static DomNodeType[] values()
for (DomNodeType c : DomNodeType.values()) System.out.println(c);
public static DomNodeType 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 © 2021 e-Spirit AG. All Rights Reserved. Build 5.2.210210