public static interface FONode.FONodeIterator
extends java.util.ListIterator
Modifier and Type | Method and Description |
---|---|
FONode |
firstNode()
Returns the first node in the list, and decreases the index,
so that a subsequent call to
hasPrevious() will
return false |
FONode |
lastNode()
Returns the last node in the list, and advances the
current position, so that a subsequent call to
hasNext()
will return false |
FONode |
nextNode()
Convenience method with return type of FONode
(semantically equivalent to:
(FONode) next(); ) |
FObj |
parentNode()
Returns the parent node for this iterator's list
of child nodes
|
FONode |
previousNode()
Convenience method with return type of FONode
(semantically equivalent to:
(FONode) previous(); ) |
FObj parentNode()
FONode nextNode()
(FONode) next();
)FONode previousNode()
(FONode) previous();
)FONode firstNode()
hasPrevious()
will
return false
FONode lastNode()
hasNext()
will return false
Copyright 1999-2012 The Apache Software Foundation. All Rights Reserved.