| java.lang.Object net.sf.saxon.om.ListIterator
ListIterator | public ListIterator(List list)(Code) | | Create a ListIterator over a given List
Parameters: list - the list: all objects in the list must be instances of Item |
ListIterator | public ListIterator(List list, int length)(Code) | | Create a ListIterator over the leading part of a given List
Parameters: list - the list: all objects in the list must be instances of Item length: the number of items to be included |
getLastPosition | public int getLastPosition()(Code) | | |
getProperties | public int getProperties()(Code) | | Get properties of this iterator, as a bit-significant integer.
the properties of this iterator. This will be some combination ofproperties such as GROUNDED, LAST_POSITION_FINDER,and LOOKAHEAD. It is alwaysacceptable to return the value zero, indicating that there are no known special properties.It is acceptable for the properties of the iterator to change depending on its state. |
hasNext | public boolean hasNext()(Code) | | |
materialize | public Value materialize()(Code) | | Return a SequenceValue containing all the items in the sequence returned by this
SequenceIterator
the corresponding SequenceValue |
position | public int position()(Code) | | |
|
|