Uses of Interface
org.apache.xml.dtm.DTMIterator

Packages that use DTMIterator
org.apache.xalan.templates Implements the Templates interface, and defines a set of classes that represent an XSLT stylesheet. 
org.apache.xalan.transformer In charge of run-time transformations and the production of result trees. 
org.apache.xml.dtm   
org.apache.xml.dtm.ref   
org.apache.xpath Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. 
org.apache.xpath.axes Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator. 
org.apache.xpath.objects 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.apache.xalan.templates
 

Methods in org.apache.xalan.templates that return DTMIterator
 DTMIterator ElemForEach.sortNodes(XPathContext xctxt, java.util.Vector keys, DTMIterator sourceNodes)
          Sort given nodes
 

Methods in org.apache.xalan.templates with parameters of type DTMIterator
 DTMIterator ElemForEach.sortNodes(XPathContext xctxt, java.util.Vector keys, DTMIterator sourceNodes)
          Sort given nodes
 

Uses of DTMIterator in org.apache.xalan.transformer
 

Classes in org.apache.xalan.transformer that implement DTMIterator
 class KeyIterator
          **For internal use only** This class implements an optimized iterator for "key()" patterns.
 class KeyRefIterator
          **For internal use only** This class implements an optimized iterator for "key()" patterns.
 

Methods in org.apache.xalan.transformer that return DTMIterator
 DTMIterator TransformerImpl.getContextNodeList()
          Get the current context node list.
 

Methods in org.apache.xalan.transformer with parameters of type DTMIterator
 void NodeSorter.sort(DTMIterator v, java.util.Vector keys, XPathContext support)
          Given a vector of nodes, sort each node according to the criteria in the keys.
 

Uses of DTMIterator in org.apache.xml.dtm
 

Methods in org.apache.xml.dtm that return DTMIterator
 DTMIterator DTMIterator.cloneWithReset()
          Get a cloned Iterator that is reset to the start of the iteration.
abstract  DTMIterator DTMManager.createDTMIterator(java.lang.Object xpathCompiler, int pos)
          Create a new DTMIterator based on an XPath UnionExpr.
abstract  DTMIterator DTMManager.createDTMIterator(java.lang.String xpathString, PrefixResolver presolver)
          Create a new DTMIterator based on an XPath UnionExpr.
abstract  DTMIterator DTMManager.createDTMIterator(int whatToShow, DTMFilter filter, boolean entityReferenceExpansion)
          Create a new DTMIterator based only on a whatToShow and a DTMFilter.
abstract  DTMIterator DTMManager.createDTMIterator(int node)
          Create a new DTMIterator that holds exactly one node.
 

Uses of DTMIterator in org.apache.xml.dtm.ref
 

Methods in org.apache.xml.dtm.ref that return DTMIterator
 DTMIterator DTMNodeIterator.getDTMIterator()
          Access the wrapped DTMIterator.
 DTMIterator DTMManagerDefault.createDTMIterator(int whatToShow, DTMFilter filter, boolean entityReferenceExpansion)
          NEEDSDOC Method createDTMIterator NEEDSDOC @param whatToShow NEEDSDOC @param filter NEEDSDOC @param entityReferenceExpansion NEEDSDOC (createDTMIterator) @return
 DTMIterator DTMManagerDefault.createDTMIterator(java.lang.String xpathString, PrefixResolver presolver)
          NEEDSDOC Method createDTMIterator NEEDSDOC @param xpathString NEEDSDOC @param presolver NEEDSDOC (createDTMIterator) @return
 DTMIterator DTMManagerDefault.createDTMIterator(int node)
          NEEDSDOC Method createDTMIterator NEEDSDOC @param node NEEDSDOC (createDTMIterator) @return
 DTMIterator DTMManagerDefault.createDTMIterator(java.lang.Object xpathCompiler, int pos)
          NEEDSDOC Method createDTMIterator NEEDSDOC @param xpathCompiler NEEDSDOC @param pos NEEDSDOC (createDTMIterator) @return
 

Constructors in org.apache.xml.dtm.ref with parameters of type DTMIterator
DTMNodeIterator.DTMNodeIterator(DTMIterator dtmIterator)
          Public constructor: Wrap a DTMNodeIterator around an existing and preconfigured DTMIterator
DTMNodeList.DTMNodeList(DTMIterator dtmIterator)
          Public constructor: Wrap a DTMNodeList around an existing and preconfigured DTMIterator WARNING: THIS HAS THE SIDE EFFECT OF ISSUING setShouldCacheNodes(true) AGAINST THE DTMIterator.
 

Uses of DTMIterator in org.apache.xpath
 

Classes in org.apache.xpath that implement DTMIterator
 class NodeSetDTM
          **For advanced use only**
 

Methods in org.apache.xpath that return DTMIterator
 DTMIterator Expression.asIterator(XPathContext xctxt, int contextNode)
          **Experimental** Given an select expression and a context, evaluate the XPath and return the resulting iterator.
 DTMIterator NodeSetDTM.cloneWithReset()
          Get a cloned Iterator, and reset its state to the beginning of the iteration.
 DTMIterator XPathContext.createDTMIterator(java.lang.Object xpathCompiler, int pos)
          Create a new DTMIterator based on an XPath UnionExpr.
 DTMIterator XPathContext.createDTMIterator(java.lang.String xpathString, PrefixResolver presolver)
          Create a new DTMIterator based on an XPath UnionExpr.
 DTMIterator XPathContext.createDTMIterator(int whatToShow, DTMFilter filter, boolean entityReferenceExpansion)
          Create a new DTMIterator based only on a whatToShow and a DTMFilter.
 DTMIterator XPathContext.createDTMIterator(int node)
          Create a new DTMIterator that holds exactly one node.
 DTMIterator XPathContext.getContextNodeList()
          Get the current context node list.
 DTMIterator XPathContext.getContextNodes()
          Get the current context node list.
 

Methods in org.apache.xpath with parameters of type DTMIterator
 void NodeSetDTM.addNodes(DTMIterator iterator)
          Copy NodeList members into this nodelist, adding in document order.
 void NodeSetDTM.addNodesInDocOrder(DTMIterator iterator, XPathContext support)
          Copy NodeList members into this nodelist, adding in document order.
 void XPathContext.pushContextNodeList(DTMIterator nl)
          **For internal use only** Set the current context node list.
 

Constructors in org.apache.xpath with parameters of type DTMIterator
NodeSetDTM.NodeSetDTM(DTMIterator ni)
          Create a NodeSetDTM, and copy the members of the given DTMIterator into it.
 

Uses of DTMIterator in org.apache.xpath.axes
 

Classes in org.apache.xpath.axes that implement DTMIterator
 class AttributeIterator
          **For advanced use only** This class implements an optimized iterator for attribute axes patterns.
 class ChildIterator
          **For advanced use only** This class implements an optimized iterator for "node()" patterns, that is, any children of the context node.
 class ChildTestIterator
          **For advanced use only** This class implements an optimized iterator for children patterns that have a node test, and possibly a predicate.
 class DescendantIterator
          **For advanced use only** This class implements an optimized iterator for descendant, descendant-or-self, or "//foo" patterns.
 class LocPathIterator
          **For advanced use only** This class extends NodeSetDTM, which implements NodeIterator, and fetches nodes one at a time in document order based on a XPath
 class MatchPatternIterator
          This class treats a LocationPath as a filtered iteration over the tree, evaluating each node in a super axis traversal against the LocationPath interpreted as a match pattern.
 class OneStepIterator
          **For advanced use only** This class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate.
 class OneStepIteratorForward
          **For advanced use only** This class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate, that only go forward (i.e.
 class SelfIteratorNoPredicate
          **For advanced use only** This class implements an optimized iterator for "." patterns, that is, the self axes without any predicates.
 class UnionPathIterator
          **For advanced use only** This class extends NodeSetDTM, which implements DTMIterator, and fetches nodes one at a time in document order based on a XPath UnionExpr.
 class WalkingIterator
          Location path iterator that uses Walkers.
 class WalkingIteratorSorted
          **For internal use only** NEEDSDOC Class WalkingIteratorSorted
 

Methods in org.apache.xpath.axes that return DTMIterator
 DTMIterator LocPathIterator.asIterator(XPathContext xctxt, int contextNode)
          **Experimental** Given an select expression and a context, evaluate the XPath and return the resulting iterator.
 DTMIterator LocPathIterator.cloneWithReset()
          Get a cloned Iterator that is reset to the beginning of the query.
 DTMIterator IteratorPool.getInstance()
          Get an instance of the given object in this pool
 DTMIterator ChildTestIterator.cloneWithReset()
          Get a cloned Iterator that is reset to the beginning of the query.
 DTMIterator DescendantIterator.cloneWithReset()
          Get a cloned Iterator that is reset to the beginning of the query.
static DTMIterator WalkerFactory.newDTMIterator(Compiler compiler, int opPos, boolean isTopLevel)
          Create a new LocPathIterator iterator.
 DTMIterator UnionPathIterator.cloneWithReset()
          Get a cloned Iterator that is reset to the beginning of the query.
 DTMIterator UnionPathIterator.asIterator(XPathContext xctxt, int contextNode)
          **Experimental** Given an select expression and a context, evaluate the XPath and return the resulting iterator.
 

Methods in org.apache.xpath.axes with parameters of type DTMIterator
 void IteratorPool.freeInstance(DTMIterator obj)
          Add an instance of the given object to the pool
 

Constructors in org.apache.xpath.axes with parameters of type DTMIterator
IteratorPool.IteratorPool(DTMIterator original)
          Constructor IteratorPool
 

Uses of DTMIterator in org.apache.xpath.objects
 

Methods in org.apache.xpath.objects that return DTMIterator
 DTMIterator XObject.iter()
          Cast result object to a nodelist.
 DTMIterator XNodeSet.iterRaw()
          Return the iterator without cloning, etc.
 DTMIterator XNodeSet.iter()
          Cast result object to a nodelist.
 DTMIterator XRTreeFrag.asNodeIterator()
          Cast result object to a DTMIterator.
 DTMIterator XRTreeFragSelectWrapper.asNodeIterator()
          Cast result object to a DTMIterator.
 DTMIterator XNull.iter()
          Cast result object to a nodelist.
 

Constructors in org.apache.xpath.objects with parameters of type DTMIterator
XNodeSet.XNodeSet(DTMIterator val)
          Construct a XNodeSet object.
 



Copyright © 2001 Apache XML Project. All Rights Reserved.