java.lang.Object |
↳ |
com.pnfsoftware.jeb.util.encoding.xml.XNode |
Known Direct Subclasses
|
Known Indirect Subclasses
|
Class Overview
Implementation of the Node
API used by XmlParser
.
Summary
[Expand]
Inherited Constants |
From interface
org.w3c.dom.Node
short |
ATTRIBUTE_NODE |
|
short |
CDATA_SECTION_NODE |
|
short |
COMMENT_NODE |
|
short |
DOCUMENT_FRAGMENT_NODE |
|
short |
DOCUMENT_NODE |
|
short |
DOCUMENT_POSITION_CONTAINED_BY |
|
short |
DOCUMENT_POSITION_CONTAINS |
|
short |
DOCUMENT_POSITION_DISCONNECTED |
|
short |
DOCUMENT_POSITION_FOLLOWING |
|
short |
DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC |
|
short |
DOCUMENT_POSITION_PRECEDING |
|
short |
DOCUMENT_TYPE_NODE |
|
short |
ELEMENT_NODE |
|
short |
ENTITY_NODE |
|
short |
ENTITY_REFERENCE_NODE |
|
short |
NOTATION_NODE |
|
short |
PROCESSING_INSTRUCTION_NODE |
|
short |
TEXT_NODE |
|
|
Public Constructors |
|
XNode()
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
org.w3c.dom.Node
abstract
Node
|
appendChild(Node arg0)
|
abstract
Node
|
cloneNode(boolean arg0)
|
abstract
short
|
compareDocumentPosition(Node arg0)
|
abstract
NamedNodeMap
|
getAttributes()
|
abstract
String
|
getBaseURI()
|
abstract
NodeList
|
getChildNodes()
|
abstract
Object
|
getFeature(String arg0, String arg1)
|
abstract
Node
|
getFirstChild()
|
abstract
Node
|
getLastChild()
|
abstract
String
|
getLocalName()
|
abstract
String
|
getNamespaceURI()
|
abstract
Node
|
getNextSibling()
|
abstract
String
|
getNodeName()
|
abstract
short
|
getNodeType()
|
abstract
String
|
getNodeValue()
|
abstract
Document
|
getOwnerDocument()
|
abstract
Node
|
getParentNode()
|
abstract
String
|
getPrefix()
|
abstract
Node
|
getPreviousSibling()
|
abstract
String
|
getTextContent()
|
abstract
Object
|
getUserData(String arg0)
|
abstract
boolean
|
hasAttributes()
|
abstract
boolean
|
hasChildNodes()
|
abstract
Node
|
insertBefore(Node arg0, Node arg1)
|
abstract
boolean
|
isDefaultNamespace(String arg0)
|
abstract
boolean
|
isEqualNode(Node arg0)
|
abstract
boolean
|
isSameNode(Node arg0)
|
abstract
boolean
|
isSupported(String arg0, String arg1)
|
abstract
String
|
lookupNamespaceURI(String arg0)
|
abstract
String
|
lookupPrefix(String arg0)
|
abstract
void
|
normalize()
|
abstract
Node
|
removeChild(Node arg0)
|
abstract
Node
|
replaceChild(Node arg0, Node arg1)
|
abstract
void
|
setNodeValue(String arg0)
|
abstract
void
|
setPrefix(String arg0)
|
abstract
void
|
setTextContent(String arg0)
|
abstract
Object
|
setUserData(String arg0, Object arg1, UserDataHandler arg2)
|
|
Public Constructors
Public Methods
public
Node
appendChild
(Node newChild)
public
Node
cloneNode
(boolean deep)
public
short
compareDocumentPosition
(Node other)
public
static
XNode
findNodeByName
(Collection<? extends XNode> nodes, String wantedName)
public
NamedNodeMap
getAttributes
()
public
String
getBaseURI
()
public
NodeList
getChildNodes
()
public
static
NodeList
getDescendantElementsByTagName
(XNode startNode, String name)
public
Object
getFeature
(String feature, String version)
public
Node
getFirstChild
()
public
Node
getLastChild
()
public
String
getLocalName
()
public
String
getNamespaceURI
()
public
Node
getNextSibling
()
public
Document
getOwnerDocument
()
public
Node
getParentNode
()
public
String
getPrefix
()
public
Node
getPreviousSibling
()
public
String
getTextContent
()
public
Object
getUserData
(String key)
public
boolean
hasAttributes
()
public
boolean
hasChildNodes
()
public
void
initChildren
(List<XNode> nodes)
public
Node
insertBefore
(Node newChild, Node refChild)
public
boolean
isDefaultNamespace
(String namespaceURI)
public
boolean
isEqualNode
(Node arg)
public
boolean
isSameNode
(Node other)
public
boolean
isSupported
(String feature, String version)
public
String
lookupNamespaceURI
(String prefix)
public
String
lookupPrefix
(String namespaceURI)
public
boolean
ofType
(int... candidates)
public
Node
removeChild
(Node oldChild)
public
Node
replaceChild
(Node newChild, Node oldChild)
public
void
setNodeValue
(String nodeValue)
public
void
setPrefix
(String prefix)
public
void
setTextContent
(String textContent)
public
Object
setUserData
(String key, Object data, UserDataHandler handler)