public interface Node extends EventTarget
| Modifier and Type | Field and Description |
|---|---|
static short |
ATTRIBUTE_NODE |
static short |
CDATA_SECTION_NODE |
static short |
COMMENT_NODE |
static short |
DOCUMENT_FRAGMENT_NODE |
static short |
DOCUMENT_NODE |
static short |
DOCUMENT_POSITION_CONTAINED_BY |
static short |
DOCUMENT_POSITION_CONTAINS |
static short |
DOCUMENT_POSITION_DISCONNECTED |
static short |
DOCUMENT_POSITION_FOLLOWING |
static short |
DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC |
static short |
DOCUMENT_POSITION_PRECEDING |
static short |
DOCUMENT_TYPE_NODE |
static short |
ELEMENT_NODE |
static short |
ENTITY_NODE |
static short |
ENTITY_REFERENCE_NODE |
static short |
NOTATION_NODE |
static short |
PROCESSING_INSTRUCTION_NODE |
static short |
TEXT_NODE |
| Modifier and Type | Method and Description |
|---|---|
Node |
appendChild(Node newChild) |
Node |
cloneNode(boolean deep) |
short |
compareDocumentPosition(Node other) |
String |
getBaseURI() |
NodeList |
getChildNodes() |
Node |
getFirstChild() |
Node |
getLastChild() |
Node |
getNextSibling() |
String |
getNodeName() |
short |
getNodeType() |
String |
getNodeValue() |
Document |
getOwnerDocument() |
Element |
getParentElement() |
Node |
getParentNode() |
Node |
getPreviousSibling() |
String |
getTextContent() |
boolean |
hasChildNodes() |
Node |
insertBefore(Node newChild,
Node refChild) |
boolean |
isDefaultNamespace(String namespace) |
boolean |
isEqualNode(Node node) |
boolean |
isSameNode(Node node) |
String |
lookupNamespaceURI(String prefix) |
String |
lookupPrefix(String namespace) |
Node |
removeChild(Node oldChild) |
Node |
replaceChild(Node newChild,
Node oldChild) |
void |
setNodeValue(String nodeValue) |
void |
setTextContent(String textContent) |
addEventListener, addEventListener, dispatchEvent, removeEventListener, removeEventListenerstatic final short ELEMENT_NODE
static final short ATTRIBUTE_NODE
static final short TEXT_NODE
static final short CDATA_SECTION_NODE
static final short ENTITY_REFERENCE_NODE
static final short ENTITY_NODE
static final short PROCESSING_INSTRUCTION_NODE
static final short COMMENT_NODE
static final short DOCUMENT_NODE
static final short DOCUMENT_TYPE_NODE
static final short DOCUMENT_FRAGMENT_NODE
static final short NOTATION_NODE
static final short DOCUMENT_POSITION_DISCONNECTED
static final short DOCUMENT_POSITION_PRECEDING
static final short DOCUMENT_POSITION_FOLLOWING
static final short DOCUMENT_POSITION_CONTAINS
static final short DOCUMENT_POSITION_CONTAINED_BY
static final short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
short getNodeType()
String getNodeName()
String getBaseURI()
Document getOwnerDocument()
Node getParentNode()
Element getParentElement()
boolean hasChildNodes()
NodeList getChildNodes()
Node getFirstChild()
Node getLastChild()
Node getPreviousSibling()
Node getNextSibling()
short compareDocumentPosition(Node other)
String getNodeValue()
void setNodeValue(String nodeValue)
String getTextContent()
void setTextContent(String textContent)
Node cloneNode(boolean deep)
boolean isSameNode(Node node)
boolean isEqualNode(Node node)
boolean isDefaultNamespace(String namespace)
Copyright © 2016. All Rights Reserved.