public class NodeSequence extends XObject implements DTMIterator, Cloneable, PathComponent
| Modifier and Type | Field and Description |
|---|---|
protected DTMManager |
m_dtmMgr
The DTMManager to use if we're using a NodeVector only.
|
protected DTMIterator |
m_iter
The functional iterator that fetches nodes.
|
protected int |
m_last
The index of the last node in the iteration.
|
protected int |
m_next
The index of the next node to be fetched.
|
CLASS_BOOLEAN, CLASS_NODESET, CLASS_NULL, CLASS_NUMBER, CLASS_RTREEFRAG, CLASS_STRING, CLASS_UNKNOWN, m_objFILTER_ACCEPT, FILTER_SKIP| Constructor and Description |
|---|
NodeSequence()
Create a new NodeSequence in an invalid (null) state.
|
NodeSequence(Object nodeVector)
Create a new NodeSequence from a (already cloned) iterator.
|
| Modifier and Type | Method and Description |
|---|---|
protected int |
addNodeInDocOrder(int node)
Add the node into a vector of nodes where it should occur in document order.
|
Object |
clone()
Get a clone of this iterator, but don't reset the iteration in the process, so that it may be
used from the current position.
|
DTMIterator |
cloneWithReset()
Get a cloned Iterator that is reset to the start of the iteration.
|
void |
detach()
Detaches the
DTMIterator from the set which it iterated over, releasing any
computational resources and placing the iterator in the INVALID state. |
int |
getAnalysisBits()
Get the analysis bits for this path component, as defined in the WalkerFactory.
|
int |
getAxis()
Returns the axis being iterated, if it is known.
|
int |
getCurrentNode()
Get the current node in the iterator.
|
int |
getCurrentPos()
Get the current position within the cached list, which is one less than the next nextNode()
call will retrieve.
|
DTM |
getDTM(int nodeHandle)
Get an instance of a DTM that "owns" a node handle.
|
DTMManager |
getDTMManager()
Get an instance of the DTMManager.
|
boolean |
getExpandEntityReferences()
The value of this flag determines whether the children of entity reference nodes are visible to
the iterator.
|
protected org.htmlunit.xpath.axes.NodeSequence.IteratorCache |
getIteratorCache()
Get the cached list of nodes appended with values obtained from the iterator as a NodeSequence
is walked when its nextNode() method is called.
|
int |
getLength()
The number of nodes in the list.
|
int |
getRoot()
The root node of the
DTMIterator, as specified when it was created. |
protected NodeVector |
getVector()
If this iterator needs to cache nodes that are fetched, they are stored in the Vector in the
generic object.
|
int |
getWhatToShow()
This attribute determines which node types are presented via the iterator.
|
boolean |
hasCache()
If the iterator needs to cache nodes as they are fetched, then this method returns true.
|
boolean |
isDocOrdered()
Returns true if all the nodes in the iteration well be returned in document order.
|
boolean |
isFresh()
Tells if this NodeSetDTM is "fresh", in other words, if the first nextNode() that is called
will return the first node in the set.
|
int |
item(int index)
Returns the
node handle of an item in the collection. |
int |
nextNode()
Returns the next node in the set and advances the position of the iterator in the set.
|
int |
previousNode()
Returns the previous node in the set and moves the position of the
DTMIterator
backwards in the set. |
void |
reset()
Reset the iterator to the start.
|
void |
runTo(int index)
If an index is requested, NodeSetDTM will call this method to run the iterator to the index.
|
void |
setCurrentPos(int i)
Set the current position in the node set.
|
void |
setIter(DTMIterator iter)
Set the functional iterator that fetches nodes.
|
protected void |
setObject(Object obj) |
void |
setRoot(int nodeHandle,
Object environment)
Reset the root node of the
DTMIterator, overriding the value specified when it was
created. |
void |
setShouldCacheNodes(boolean b)
If setShouldCacheNodes(true) is called, then nodes will be cached, enabling random access, and
giving the ability to do sorts and the like.
|
protected void |
SetVector(NodeVector v)
Set the vector where nodes will be cached.
|
bool, boolWithSideEffects, callVisitors, deepEquals, equals, error, error, execute, getType, getTypeString, greaterThan, greaterThanOrEqual, iter, lessThan, lessThanOrEqual, mutableNodeset, nodelist, nodeset, notEquals, num, numWithSideEffects, object, str, toString, xstrasIterator, asNode, assertion, bool, canTraverseOutsideSubtree, error, execute, execute, execute, exprGetParent, exprSetParent, getColumnNumber, getExpressionOwner, getLineNumber, getPublicId, getSystemId, isSameClass, isStableNumber, numprotected int m_last
protected int m_next
protected DTMIterator m_iter
protected DTMManager m_dtmMgr
public NodeSequence(Object nodeVector)
nodeVector - public NodeSequence()
protected NodeVector getVector()
protected void SetVector(NodeVector v)
public boolean hasCache()
public final void setIter(DTMIterator iter)
iter - The iterator that is to be contained.public DTM getDTM(int nodeHandle)
getDTM in interface DTMIteratornodeHandle - the nodeHandle.public DTMManager getDTMManager()
getDTMManager in interface DTMIteratorpublic int getRoot()
DTMIterator, as specified when it was created. Note the root
node is not the root node of the document tree, but the context node from where the iteration
begins and ends.getRoot in interface DTMIteratorpublic void setRoot(int nodeHandle,
Object environment)
DTMIterator, overriding the value specified when it was
created. Note the root node is not the root node of the document tree, but the context node
from where the iteration begins.setRoot in interface DTMIteratornodeHandle - int Handle of the context node.environment - The environment object. The environment in which this iterator operates,
which should provide:
At this time the exact implementation of this environment is application dependent. Probably a proper interface will be created fairly soon.
public void reset()
reset in interface DTMIteratorpublic int getWhatToShow()
whatToShow will be skipped, but
their children may still be considered.getWhatToShow in interface DTMIteratorpublic boolean getExpandEntityReferences()
whatToShow and the filter.
To produce a view of the document that has entity references expanded and does not expose
the entity reference node itself, use the whatToShow flags to hide the entity
reference node and set expandEntityReferences to true when creating the iterator.
To produce a view of the document that has entity reference nodes but no entity expansion, use
the whatToShow flags to show the entity reference node and set
expandEntityReferences to false.
NOTE: In Xalan's use of DTM we will generally have fully expanded entity references when the document tree was built, and thus this flag will have no effect.
getExpandEntityReferences in interface DTMIteratorpublic int nextNode()
DTMIterator has setRoot called, the first call to nextNode() returns
that root or (if it is rejected by the filters) the first node within its subtree which is not
filtered out.nextNode in interface DTMIteratorDTM.NULL if there
are no more members in that set.public int previousNode()
DTMIterator
backwards in the set.previousNode in interface DTMIteratorDTM.NULL if
there are no more members in that set.public void detach()
DTMIterator from the set which it iterated over, releasing any
computational resources and placing the iterator in the INVALID state. After detach
has been invoked, calls to nextNode or previousNode will
raise a runtime exception.detach in interface DTMIteratordetach in class XObjectpublic int getCurrentNode()
getCurrentNode in interface DTMIteratorpublic boolean isFresh()
isFresh in interface DTMIteratorpublic void setShouldCacheNodes(boolean b)
%REVIEW% Shouldn't the other random-access methods throw an exception if they're called on a DTMIterator with this flag set false?
setShouldCacheNodes in interface DTMIteratorb - true if the nodes should be cached.public int getCurrentPos()
getCurrentPos in interface DTMIteratorpublic void runTo(int index)
runTo in interface DTMIteratorindex - The index to run to, or -1 if the iterator should be run to the end.public void setCurrentPos(int i)
setCurrentPos in interface DTMIteratori - Must be a valid index.public int item(int index)
node handle of an item in the collection. If index is
greater than or equal to the number of nodes in the list, this returns null.item in interface DTMIteratorindex - of the item.indexth position in the DTMIterator,
or -1 if that is not a valid index.public int getLength()
length-1
inclusive. Note that this requires running the iterator to completion, and presumably
filling the cache.getLength in interface DTMIteratorpublic DTMIterator cloneWithReset() throws CloneNotSupportedException
cloneWithReset in interface DTMIteratorCloneNotSupportedException - if anypublic Object clone() throws CloneNotSupportedException
clone in interface DTMIteratorclone in class ObjectCloneNotSupportedException - if anypublic boolean isDocOrdered()
isDocOrdered in interface DTMIteratorpublic int getAxis()
getAxis in interface DTMIteratorpublic int getAnalysisBits()
getAnalysisBits in interface PathComponentprotected int addNodeInDocOrder(int node)
node - The node to be added.RuntimeException - thrown if this NodeSetDTM is not of a mutable type.protected org.htmlunit.xpath.axes.NodeSequence.IteratorCache getIteratorCache()
Copyright © 2022–2023 HtmlUnit. All rights reserved.