Uses of Interface
org.htmlunit.xpath.xml.dtm.DTMIterator
-
Packages that use DTMIterator Package Description org.htmlunit.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.htmlunit.xpath.axes Implementation of XPath LocationPath support -- primary classes are LocPathIterator and UnionPathIterator.org.htmlunit.xpath.objects Implementation of XPath polymorphic type objects -- this package will grow as XPath objects are expanded to support XML Schema data types.org.htmlunit.xpath.xml.dtm org.htmlunit.xpath.xml.dtm.ref -
-
Uses of DTMIterator in org.htmlunit.xpath
Classes in org.htmlunit.xpath that implement DTMIterator Modifier and Type Class Description classNodeSetDTMThe NodeSetDTM class can act as either a NodeVector, NodeList, or NodeIterator.Methods in org.htmlunit.xpath that return DTMIterator Modifier and Type Method Description DTMIteratorExpression. asIterator(XPathContext xctxt, int contextNode)Given an select expression and a context, evaluate the XPath and return the resulting iterator.DTMIteratorNodeSetDTM. cloneWithReset()Get a cloned Iterator that is reset to the start of the iteration.Methods in org.htmlunit.xpath with parameters of type DTMIterator Modifier and Type Method Description voidNodeSetDTM. addNodes(DTMIterator iterator)Copy NodeList members into this nodelist, adding in document order.Constructors in org.htmlunit.xpath with parameters of type DTMIterator Constructor Description NodeSetDTM(DTMIterator ni)Create a NodeSetDTM, and copy the members of the given DTMIterator into it. -
Uses of DTMIterator in org.htmlunit.xpath.axes
Classes in org.htmlunit.xpath.axes that implement DTMIterator Modifier and Type Class Description classAttributeIteratorThis class implements an optimized iterator for attribute axes patterns.classBasicTestIteratorBase for iterators that handle predicates.classChildIteratorThis class implements an optimized iterator for "node()" patterns, that is, any children of the context node.classChildTestIteratorThis class implements an optimized iterator for children patterns that have a node test, and possibly a predicate.classDescendantIteratorThis class implements an optimized iterator for descendant, descendant-or-self, or "//foo" patterns.classLocPathIteratorThis class extends NodeSetDTM, which implements NodeIterator, and fetches nodes one at a time in document order based on a XPath.classNodeSequenceThis class is the dynamic wrapper for a Xalan DTMIterator instance, and provides random access capabilities.classOneStepIteratorThis class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate.classOneStepIteratorForwardThis class implements a general iterator for those LocationSteps with only one step, and perhaps a predicate, that only go forward (i.e.classSelfIteratorNoPredicateThis class implements an optimized iterator for "." patterns, that is, the self axes without any predicates.classUnionChildIteratorThis class defines a simplified type of union iterator that only tests along the child axes.classUnionPathIteratorThis class extends NodeSetDTM, which implements DTMIterator, and fetches nodes one at a time in document order based on a XPath UnionExpr.classWalkingIteratorLocation path iterator that uses Walkers.classWalkingIteratorSortedThis class iterates over set of nodes that needs to be sorted.Fields in org.htmlunit.xpath.axes declared as DTMIterator Modifier and Type Field Description protected DTMIterator[]UnionPathIterator. iterators_The location path iterators, one for each location path contained in the union expression.protected DTMIteratorNodeSequence. m_iterThe functional iterator that fetches nodes.private DTMIteratorIteratorPool. m_origType of objects in this pool.Fields in org.htmlunit.xpath.axes with type parameters of type DTMIterator Modifier and Type Field Description private java.util.ArrayList<DTMIterator>IteratorPool. m_freeStackStack of given objects this points to.Methods in org.htmlunit.xpath.axes that return DTMIterator Modifier and Type Method Description DTMIteratorLocPathIterator. asIterator(XPathContext xctxt, int contextNode)Given an select expression and a context, evaluate the XPath and return the resulting iterator.DTMIteratorBasicTestIterator. cloneWithReset()Get a cloned Iterator that is reset to the start of the iteration.DTMIteratorChildTestIterator. cloneWithReset()Get a cloned Iterator that is reset to the start of the iteration.DTMIteratorDescendantIterator. cloneWithReset()Get a cloned Iterator that is reset to the start of the iteration.DTMIteratorLocPathIterator. cloneWithReset()Get a cloned Iterator that is reset to the start of the iteration.DTMIteratorNodeSequence. cloneWithReset()Get a cloned Iterator that is reset to the start of the iteration.DTMIteratorOneStepIterator. cloneWithReset()Get a cloned Iterator that is reset to the start of the iteration.DTMIteratorIteratorPool. getInstance()Get an instance of the given object in this poolDTMIteratorIteratorPool. getInstanceOrThrow()Get an instance of the given object in this poolstatic DTMIteratorWalkerFactory. newDTMIterator(Compiler compiler, int opPos, boolean isTopLevel)Create a new LocPathIterator iterator.Methods in org.htmlunit.xpath.axes with parameters of type DTMIterator Modifier and Type Method Description voidIteratorPool. freeInstance(DTMIterator obj)Add an instance of the given object to the poolvoidNodeSequence. setIter(DTMIterator iter)Set the functional iterator that fetches nodes.Constructors in org.htmlunit.xpath.axes with parameters of type DTMIterator Constructor Description IteratorPool(DTMIterator original)Constructor IteratorPool -
Uses of DTMIterator in org.htmlunit.xpath.objects
Classes in org.htmlunit.xpath.objects that implement DTMIterator Modifier and Type Class Description classXNodeSetThis class represents an XPath nodeset object, and is capable of converting the nodeset to other types, such as a string.Methods in org.htmlunit.xpath.objects that return DTMIterator Modifier and Type Method Description DTMIteratorXNodeSet. iter()Cast result object to a nodelist.DTMIteratorXObject. iter()Cast result object to a nodelist.DTMIteratorXNodeSet. iterRaw()Return the iterator without cloning, etc.Constructors in org.htmlunit.xpath.objects with parameters of type DTMIterator Constructor Description XNodeSet(DTMIterator val)Construct a XNodeSet object. -
Uses of DTMIterator in org.htmlunit.xpath.xml.dtm
Methods in org.htmlunit.xpath.xml.dtm that return DTMIterator Modifier and Type Method Description DTMIteratorDTMIterator. cloneWithReset()Get a cloned Iterator that is reset to the start of the iteration. -
Uses of DTMIterator in org.htmlunit.xpath.xml.dtm.ref
Fields in org.htmlunit.xpath.xml.dtm.ref declared as DTMIterator Modifier and Type Field Description private DTMIteratorDTMNodeIterator. dtm_iterprivate DTMIteratorDTMNodeList. m_iterMethods in org.htmlunit.xpath.xml.dtm.ref that return DTMIterator Modifier and Type Method Description DTMIteratorDTMNodeList. getDTMIterator()Access the wrapped DTMIterator.Constructors in org.htmlunit.xpath.xml.dtm.ref with parameters of type DTMIterator Constructor Description DTMNodeIterator(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
-