public interface Node
Modifier and Type | Field and Description |
---|---|
static short |
ATTRIBUTE_NODE
The node is an
AttrImpl . |
static short |
CDATA_SECTION_NODE
The node is a
CDATASection . |
static short |
COMMENT_NODE
The node is a
Comment . |
static short |
DOCUMENT_FRAGMENT_NODE
The node is a
DocumentFragment . |
static short |
DOCUMENT_NODE
The node is a
Document . |
static short |
DOCUMENT_TYPE_NODE
The node is a
DocumentType . |
static short |
ELEMENT_NODE |
static short |
ENTITY_NODE
The node is an
Entity . |
static short |
ENTITY_REFERENCE_NODE
The node is an
EntityReference . |
static short |
NOTATION_NODE
The node is a
Notation . |
static short |
PROCESSING_INSTRUCTION_NODE
The node is a
ProcessingInstruction . |
static short |
TEXT_NODE
The node is a
Text node. |
Modifier and Type | Method and Description |
---|---|
NodeList |
getChildNodes() |
Node |
getFirstChild() |
String |
getNamespaceURI() |
Node |
getNextSibling() |
String |
getNodeName() |
short |
getNodeType() |
String |
getNodeValue() |
Node |
getParentNode() |
String |
getPrefix() |
Node |
getPreviousSibling() |
static final short ELEMENT_NODE
static final short ATTRIBUTE_NODE
AttrImpl
.static final short TEXT_NODE
Text
node.static final short CDATA_SECTION_NODE
CDATASection
.static final short ENTITY_REFERENCE_NODE
EntityReference
.static final short ENTITY_NODE
Entity
.static final short PROCESSING_INSTRUCTION_NODE
ProcessingInstruction
.static final short COMMENT_NODE
Comment
.static final short DOCUMENT_NODE
Document
.static final short DOCUMENT_TYPE_NODE
DocumentType
.static final short DOCUMENT_FRAGMENT_NODE
DocumentFragment
.static final short NOTATION_NODE
Notation
.short getNodeType()
String getNodeValue()
String getNodeName()
Node getFirstChild()
Node getNextSibling()
Node getPreviousSibling()
Node getParentNode()
NodeList getChildNodes()
String getNamespaceURI()
String getPrefix()
Copyright © 2004-2013 The Apache Software Foundation. All Rights Reserved.