Uses of Interface
org.apache.commons.jxpath.ri.model.NodeIterator
-
Packages that use NodeIterator Package Description org.apache.commons.jxpath.ri.axes Implementations of EvalContext used for different XPath axes (child::, parent:: etc).org.apache.commons.jxpath.ri.model The "model" package defines APIs that are implemented for every object model to be supported by JXPath.org.apache.commons.jxpath.ri.model.beans Implementation of "model" APIs for JavaBeans, Dynamic Property Objects, collections and null.org.apache.commons.jxpath.ri.model.container Implementation of "model" APIs for Containers.org.apache.commons.jxpath.ri.model.dom Implementation of "model" APIs for W3C DOM.org.apache.commons.jxpath.ri.model.dynamic Implementation of "model" APIs for dynamic property objects e.g.org.apache.commons.jxpath.ri.model.jdom Implementation of "model" APIs for JDOM (see jdom.org). -
-
Uses of NodeIterator in org.apache.commons.jxpath.ri.axes
Fields in org.apache.commons.jxpath.ri.axes declared as NodeIterator Modifier and Type Field Description private NodeIteratorAttributeContext. iteratorprivate NodeIteratorChildContext. iteratorprivate NodeIteratorNamespaceContext. iteratorMethods in org.apache.commons.jxpath.ri.axes that return NodeIterator Modifier and Type Method Description private static NodeIteratorSimplePathInterpreter. getNodeIterator(EvalContext context, NodePointer pointer, Step step)Get a NodeIterator. -
Uses of NodeIterator in org.apache.commons.jxpath.ri.model
Methods in org.apache.commons.jxpath.ri.model that return NodeIterator Modifier and Type Method Description NodeIteratorNodePointer. attributeIterator(QName qname)Returns a NodeIterator that iterates over all attributes of the current node matching the supplied node name (could have a wildcard).NodeIteratorVariablePointer. attributeIterator(QName name)NodeIteratorNodePointer. 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.NodeIteratorVariablePointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)NodeIteratorNodePointer. namespaceIterator()Returns a NodeIterator that iterates over all namespaces of the value currently pointed at.NodeIteratorVariablePointer. namespaceIterator() -
Uses of NodeIterator in org.apache.commons.jxpath.ri.model.beans
Classes in org.apache.commons.jxpath.ri.model.beans that implement NodeIterator Modifier and Type Class Description classBeanAttributeIteratorAn iterator of attributes of a JavaBean.classCollectionAttributeNodeIteratorCombines attribute node iterators of all elements of a collection into one aggregate attribute node iterator.classCollectionChildNodeIteratorCombines child node iterators of all elements of a collection into one aggregate child node iterator.classCollectionNodeIteratorCombines node iterators of all elements of a collection into one aggregate node iterator.classPropertyIteratorIterates property values of an object pointed at with aPropertyOwnerPointer.Methods in org.apache.commons.jxpath.ri.model.beans that return NodeIterator Modifier and Type Method Description NodeIteratorCollectionPointer. attributeIterator(QName name)NodeIteratorPropertyOwnerPointer. attributeIterator(QName name)NodeIteratorCollectionPointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)NodeIteratorPropertyOwnerPointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)NodeIteratorPropertyOwnerPointer. createNodeIterator(java.lang.String property, boolean reverse, NodePointer startWith)Create a NodeIterator.protected NodeIteratorCollectionAttributeNodeIterator. getElementNodeIterator(NodePointer elementPointer)protected NodeIteratorCollectionChildNodeIterator. getElementNodeIterator(NodePointer elementPointer)protected abstract NodeIteratorCollectionNodeIterator. getElementNodeIterator(NodePointer elementPointer)Implemented by subclasses to produce child/attribute node iterators.NodeIteratorCollectionPointer. namespaceIterator() -
Uses of NodeIterator in org.apache.commons.jxpath.ri.model.container
Methods in org.apache.commons.jxpath.ri.model.container that return NodeIterator Modifier and Type Method Description NodeIteratorContainerPointer. attributeIterator(QName name)NodeIteratorContainerPointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)NodeIteratorContainerPointer. namespaceIterator() -
Uses of NodeIterator in org.apache.commons.jxpath.ri.model.dom
Classes in org.apache.commons.jxpath.ri.model.dom that implement NodeIterator Modifier and Type Class Description classDOMAttributeIteratorAn iterator of attributes of a DOM Node.classDOMNamespaceIteratorAn iterator of namespaces of a DOM Node.classDOMNodeIteratorAn iterator of children of a DOM Node.Methods in org.apache.commons.jxpath.ri.model.dom that return NodeIterator Modifier and Type Method Description NodeIteratorDOMNodePointer. attributeIterator(QName name)NodeIteratorDOMNodePointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)NodeIteratorDOMNodePointer. namespaceIterator() -
Uses of NodeIterator in org.apache.commons.jxpath.ri.model.dynamic
Classes in org.apache.commons.jxpath.ri.model.dynamic that implement NodeIterator Modifier and Type Class Description classDynamicAttributeIteratorDynamicAttributeIteratoris different from a regularBeanAttributeIteratorin that given a property name it will always find that property (albeit with a null value).classDynamicPropertyIteratorDeprecated.- no longer needed, as it is identical to PropertyIterator.Methods in org.apache.commons.jxpath.ri.model.dynamic that return NodeIterator Modifier and Type Method Description NodeIteratorDynamicPointer. attributeIterator(QName name)NodeIteratorDynamicPointer. createNodeIterator(java.lang.String property, boolean reverse, NodePointer startWith) -
Uses of NodeIterator in org.apache.commons.jxpath.ri.model.jdom
Classes in org.apache.commons.jxpath.ri.model.jdom that implement NodeIterator Modifier and Type Class Description classJDOMAttributeIteratorAn iterator of attributes of a DOM Node.classJDOMNamespaceIteratorAn iterator of namespaces of a DOM Node.classJDOMNodeIteratorAn iterator of children of a JDOM Node.Methods in org.apache.commons.jxpath.ri.model.jdom that return NodeIterator Modifier and Type Method Description NodeIteratorJDOMNodePointer. attributeIterator(QName name)NodeIteratorJDOMNodePointer. childIterator(NodeTest test, boolean reverse, NodePointer startWith)NodeIteratorJDOMNodePointer. namespaceIterator()
-