Skip Headers

Oracle® XML API Reference
10g Release 1 (10.1)

Part Number B10789-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Feedback

Go to previous page
Previous
Go to next page
Next
View PDF

NodeIterator Interface

Table 15-19 summarizes the methods of available through NodeIterator interface.

Table 15-19 Summary of NodeIterator Methods; Dom Package

Function Summary
adjustCtx
Attach this iterator to the another context.
detach
Invalidate the iterator.
nextNode
Go to the next node.
previousNode
Go to the previous node.


adjustCtx

Attaches this iterator to the context associated with a given node reference


Syntax
void adjustCtx( 
   NodeRef< Node>& nref);

Parameter Description
nref
reference node


detach

Invalidates the iterator.


Syntax
void detach();


nextNode

Go to the next node.


Syntax
Node* nextNode() throw (DOMException);


Returns

(Node*) pointer to the next node


previousNode

Go to the previous node.


Syntax
Node* previousNode() throw (DOMException);


Returns

(Node*) pointer to the previous node