Uses of Interface
org.loboevolution.apache.xml.dtm.DTMIterator
Package
Description
Implementation of XPath; for the most part, only classes meant for public use are
found at this root level of the XPath packages.
Implementation of XPath LocationPath support -- primary classes are
LocPathIterator and UnionPathIterator.
Implementation of XPath polymorphic type objects -- this package will grow
as XPath objects are expanded to support XML Schema data types.
-
Uses of DTMIterator in org.loboevolution.apache.xml.dtm
Modifier and TypeMethodDescriptionDTMIterator.cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.abstract DTMIterator
DTMManager.createDTMIterator
(int whatToShow, DTMFilter filter, boolean entityReferenceExpansion) Create a newDTMIterator
based only on a whatToShow and a DTMFilter.abstract DTMIterator
DTMManager.createDTMIterator
(Object xpathCompiler, int pos) abstract DTMIterator
DTMManager.createDTMIterator
(String xpathString, PrefixResolver presolver) -
Uses of DTMIterator in org.loboevolution.apache.xml.dtm.ref
Modifier and TypeMethodDescriptionDTMManagerDefault.createDTMIterator
(int whatToShow, DTMFilter filter, boolean entityReferenceExpansion) Create a newDTMIterator
based only on a whatToShow and a DTMFilter.DTMManagerDefault.createDTMIterator
(Object xpathCompiler, int pos) DTMManagerDefault.createDTMIterator
(String xpathString, PrefixResolver presolver) DTMNodeList.getDTMIterator()
Access the wrapped DTMIterator.ModifierConstructorDescriptionDTMNodeIterator
(DTMIterator dtmIterator) Public constructor: Wrap a DTMNodeIterator around an existing and preconfigured DTMIteratorDTMNodeList
(DTMIterator dtmIterator) Public constructor: Wrap a DTMNodeList around an existing and preconfigured DTMIterator -
Uses of DTMIterator in org.loboevolution.apache.xpath
Modifier and TypeClassDescriptionclass
The NodeSetDTM class can act as either a NodeVector, NodeList, or NodeIterator.Modifier and TypeMethodDescriptionExpression.asIterator
(XPathContext xctxt, int contextNode) Given an select expression and a context, evaluate the XPath and return the resulting iterator.NodeSetDTM.cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.XPathContext.createDTMIterator
(int whatToShow, DTMFilter filter, boolean entityReferenceExpansion) Create a newDTMIterator
based only on a whatToShow and a DTMFilter.XPathContext.createDTMIterator
(Object xpathCompiler, int pos) XPathContext.createDTMIterator
(String xpathString, PrefixResolver presolver) Modifier and TypeMethodDescriptionvoid
NodeSetDTM.addNodes
(DTMIterator iterator) Copy NodeList members into this nodelist, adding in document order.ModifierConstructorDescriptionCreate a NodeSetDTM, and copy the members of the given DTMIterator into it. -
Uses of DTMIterator in org.loboevolution.apache.xpath.axes
Modifier and TypeClassDescriptionclass
This class implements an optimized iterator for attribute axes patterns.class
Base for iterators that handle predicates.class
This class implements an optimized iterator for "node()" patterns, that is, any children of the context node.class
This class implements an optimized iterator for children patterns that have a node test, and possibly a predicate.class
This class implements an optimized iterator for descendant, descendant-or-self, or "//foo" patterns.class
This class extends NodeSetDTM, which implements NodeIterator, and fetches nodes one at a time in document order based on a XPath LocationPath.class
This class is the dynamic wrapper for a Xalan DTMIterator instance, and provides random access capabilities.class
This class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate.class
This class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate, that only go forward (i.e. it can not be used with ancestors, preceding, etc.)class
This class implements an optimized iterator for "." patterns, that is, the self axes without any predicates.class
This class defines a simplified type of union iterator that only tests along the child axes.class
This class extends NodeSetDTM, which implements DTMIterator, and fetches nodes one at a time in document order based on a XPath UnionExpr.class
Location path iterator that uses Walkers.class
This class iterates over set of nodes that needs to be sorted.Modifier and TypeFieldDescriptionprotected DTMIterator
NodeSequence.m_iter
The functional iterator that fetches nodes.protected DTMIterator[]
UnionPathIterator.m_iterators
The location path iterators, one for each location path contained in the union expression.Modifier and TypeMethodDescriptionLocPathIterator.asIterator
(XPathContext xctxt, int contextNode) Given an select expression and a context, evaluate the XPath and return the resulting iterator.BasicTestIterator.cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.ChildTestIterator.cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.DescendantIterator.cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.LocPathIterator.cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.NodeSequence.cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.OneStepIterator.cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.IteratorPool.getInstance()
Get an instance of the given object in this poolIteratorPool.getInstanceOrThrow()
Get an instance of the given object in this poolstatic DTMIterator
WalkerFactory.newDTMIterator
(Compiler compiler, int opPos, boolean isTopLevel) Create a new LocPathIterator iterator.Modifier and TypeMethodDescriptionvoid
IteratorPool.freeInstance
(DTMIterator obj) Add an instance of the given object to the poolfinal void
NodeSequence.setIter
(DTMIterator iter) Set the functional iterator that fetches nodes. -
Uses of DTMIterator in org.loboevolution.apache.xpath.objects
Modifier and TypeClassDescriptionclass
This class represents an XPath nodeset object, and is capable of converting the nodeset to other types, such as a string.