- 
Method Summary
| Modifier and Type | Method | Description |  
| Node | get(int index) | Returns a Node at the specified position |  
| Iterator<Node> | iterator() | Returns an iterator of the Nodes. |  
| int | size() | Returns the number of items in the result |  
 
 
 
- 
Method Details
- 
Returns an iterator of the Nodes. 
- Specified by:
- iteratorin interface- Iterable<Node>
- Returns:
- an Iterator.
 
- 
int size() Returns the number of items in the result 
- Returns:
- The number of items in the result
 
- 
Returns a Node at the specified position 
- Parameters:
- index- Index of the element to return.
- Returns:
- The Node at the specified position.
- Throws:
- XPathException- If the index is out of range
 (index < 0 || index >= size())