public class DOMNodePointer extends NodePointer
| Modifier and Type | Field and Description |
|---|---|
static String |
XML_NAMESPACE_URI
XML namespace URI
|
static String |
XMLNS_NAMESPACE_URI
XMLNS namespace URI
|
index, locale, parent, UNKNOWN_NAMESPACE, WHOLE_COLLECTION| Constructor and Description |
|---|
DOMNodePointer(Node node,
Locale locale)
Create a new DOMNodePointer.
|
DOMNodePointer(Node node,
Locale locale,
String id)
Create a new DOMNodePointer.
|
DOMNodePointer(NodePointer parent,
Node node)
Create a new DOMNodePointer.
|
| Modifier and Type | Method and Description |
|---|---|
String |
asPath()
Returns an XPath that maps to this Pointer.
|
NodeIterator |
attributeIterator(QName name)
Returns a NodeIterator that iterates over all attributes of the current
node matching the supplied node name (could have a wildcard).
|
NodeIterator |
childIterator(NodeTest test,
boolean reverse,
NodePointer startWith)
Returns a NodeIterator that iterates over all children or all children
that match the given NodeTest, starting with the specified one.
|
int |
compareChildNodePointers(NodePointer pointer1,
NodePointer pointer2)
Compares two child NodePointers and returns a positive number,
zero or a positive number according to the order of the pointers.
|
NodePointer |
createAttribute(JXPathContext context,
QName name)
Called to create a non-existing attribute
|
NodePointer |
createChild(JXPathContext context,
QName name,
int index)
Called by a child pointer when it needs to create a parent object for a
non-existent collection element.
|
NodePointer |
createChild(JXPathContext context,
QName name,
int index,
Object value)
Called by a child pointer if that child needs to assign the value
supplied in the createPath(context, value) call to a non-existent
node.
|
boolean |
equals(Object object) |
protected static String |
findEnclosingAttribute(Node n,
String attrName)
Find the nearest occurrence of the specified attribute
on the specified and enclosing elements.
|
Object |
getBaseValue()
Returns the value represented by the pointer before indexing.
|
String |
getDefaultNamespaceURI()
Get the default ns uri
|
Object |
getImmediateNode()
Returns the object the pointer points to; does not convert it
to a "canonical" type.
|
protected String |
getLanguage()
Get the language attribute for this node.
|
int |
getLength()
If the pointer represents a collection (or collection element),
returns the length of the collection.
|
static String |
getLocalName(Node node)
Get the local name of the specified node.
|
QName |
getName()
Returns the name of this node.
|
NamespaceResolver |
getNamespaceResolver()
Get the NamespaceResolver associated with this NodePointer.
|
String |
getNamespaceURI()
Returns the namespace URI associated with this Pointer.
|
static String |
getNamespaceURI(Node node)
Get the ns uri of the specified node.
|
String |
getNamespaceURI(String prefix)
Decodes a namespace prefix to the corresponding URI.
|
Pointer |
getPointerByID(JXPathContext context,
String id)
Locates a node by ID.
|
static String |
getPrefix(Node node)
Get any prefix from the specified node.
|
Object |
getValue()
By default, returns
getNode(), can be overridden to
return a "canonical" value, like for instance a DOM element should
return its string value. |
int |
hashCode() |
boolean |
isActual()
An actual pointer points to an existing part of an object graph, even
if it is null.
|
boolean |
isCollection()
Returns
true if the value of the pointer is an array or
a Collection. |
boolean |
isLanguage(String lang)
Returns true if the xml:lang attribute for the current node
or its parent has the specified prefix lang.
|
boolean |
isLeaf()
If true, this node does not have children
|
NodeIterator |
namespaceIterator()
Returns a NodeIterator that iterates over all namespaces of the value
currently pointed at.
|
NodePointer |
namespacePointer(String prefix)
Returns a NodePointer for the specified namespace.
|
void |
remove()
Remove the node of the object graph this pointer points to.
|
void |
setValue(Object value)
Sets contents of the node to the specified value.
|
static boolean |
testNode(Node node,
NodeTest test)
Test a Node.
|
boolean |
testNode(NodeTest test)
Checks if this Pointer matches the supplied NodeTest.
|
clone, compareTo, createPath, createPath, escape, getAbstractFactory, getImmediateParentPointer, getImmediateValuePointer, getIndex, getLocale, getNode, getNodeSetByKey, getNodeValue, getParent, getPointerByKey, getRootNode, getValuePointer, isAttribute, isContainer, isDefaultNamespace, isNode, isRoot, newChildNodePointer, newNodePointer, printPointerChain, setAttribute, setIndex, setNamespaceResolver, toStringpublic static final String XML_NAMESPACE_URI
public static final String XMLNS_NAMESPACE_URI
public DOMNodePointer(Node node, Locale locale)
node - pointed atlocale - Localepublic DOMNodePointer(Node node, Locale locale, String id)
node - pointed atlocale - Localeid - string idpublic DOMNodePointer(NodePointer parent, Node node)
parent - pointernode - pointedpublic boolean testNode(NodeTest test)
NodePointertestNode in class NodePointertest - the NodeTest to executepublic static boolean testNode(Node node, NodeTest test)
node - to testtest - to executepublic QName getName()
NodePointergetName in class NodePointerpublic String getNamespaceURI()
NodePointergetNamespaceURI in class NodePointerpublic NodeIterator childIterator(NodeTest test, boolean reverse, NodePointer startWith)
NodePointerchildIterator in class NodePointertest - NodeTest to filter childrenreverse - specified iteration directionstartWith - the NodePointer to start withpublic NodeIterator attributeIterator(QName name)
NodePointerattributeIterator in class NodePointername - the attribute name to testpublic NodePointer namespacePointer(String prefix)
NodePointernamespacePointer in class NodePointerprefix - incoming namespacenamespacepublic NodeIterator namespaceIterator()
NodePointernamespaceIterator in class NodePointerpublic NamespaceResolver getNamespaceResolver()
NodePointergetNamespaceResolver in class NodePointerpublic String getNamespaceURI(String prefix)
NodePointergetNamespaceURI in class NodePointerprefix - prefix to decodepublic String getDefaultNamespaceURI()
NodePointergetDefaultNamespaceURI in class NodePointerpublic Object getBaseValue()
NodePointergetBaseValue in class NodePointerpublic Object getImmediateNode()
NodePointergetImmediateNode in class NodePointerpublic boolean isActual()
NodePointerisActual in class NodePointerpublic boolean isCollection()
NodePointertrue if the value of the pointer is an array or
a Collection.isCollection in class NodePointerpublic int getLength()
NodePointergetLength in class NodePointerpublic boolean isLeaf()
NodePointerisLeaf in class NodePointerpublic boolean isLanguage(String lang)
super.isLanguage(lang).isLanguage in class NodePointerlang - ns to testprotected static String findEnclosingAttribute(Node n, String attrName)
n - current nodeattrName - attribute nameprotected String getLanguage()
public void setValue(Object value)
setValue in interface PointersetValue in class NodePointervalue - to setpublic NodePointer createChild(JXPathContext context, QName name, int index)
NodePointercreateChild in class NodePointercontext - the owning JXPathCOntextname - the QName at which a child should be createdindex - child index.public NodePointer createChild(JXPathContext context, QName name, int index, Object value)
NodePointercreateChild in class NodePointercontext - the owning JXPathCOntextname - the QName at which a child should be createdindex - child index.value - node value to setpublic NodePointer createAttribute(JXPathContext context, QName name)
NodePointercreateAttribute in class NodePointercontext - the owning JXPathCOntextname - the QName at which an attribute should be createdpublic void remove()
NodePointerremove in class NodePointerpublic String asPath()
NodePointerasPath in interface PointerasPath in class NodePointerpublic static String getPrefix(Node node)
node - the node to checkpublic static String getLocalName(Node node)
node - node to checkpublic static String getNamespaceURI(Node node)
node - Node to checkpublic Object getValue()
NodePointergetNode(), can be overridden to
return a "canonical" value, like for instance a DOM element should
return its string value.getValue in interface PointergetValue in class NodePointerpublic Pointer getPointerByID(JXPathContext context, String id)
getPointerByID in class NodePointercontext - starting contextid - to findpublic int compareChildNodePointers(NodePointer pointer1, NodePointer pointer2)
NodePointercompareChildNodePointers in class NodePointerpointer1 - first pointer to be comparedpointer2 - second pointer to be comparedCopyright © 2001–2015 The Apache Software Foundation. All rights reserved.