Package org.jaxen.util
Class FollowingSiblingAxisIterator
- java.lang.Object
-
- org.jaxen.util.FollowingSiblingAxisIterator
-
- All Implemented Interfaces:
Iterator
public class FollowingSiblingAxisIterator extends Object implements Iterator
Represents the XPathfollowing-siblingaxis. The "following-siblingaxis contains all the folowing siblings of the context node; if the context node is an attribute node or namespace node, thefollowing-siblingaxis is empty."- Version:
- 1.2b12
-
-
Constructor Summary
Constructors Constructor Description FollowingSiblingAxisIterator(Object contextNode, Navigator navigator)Create a newfollowing-siblingaxis iterator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Returns true if there are any following siblings remain; false otherwise.Objectnext()Returns the next following sibling.voidremove()This operation is not supported.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
FollowingSiblingAxisIterator
public FollowingSiblingAxisIterator(Object contextNode, Navigator navigator) throws UnsupportedAxisException
Create a newfollowing-siblingaxis iterator.- Parameters:
contextNode- the node to start fromnavigator- the object model specific navigator- Throws:
UnsupportedAxisException
-
-
Method Detail
-
hasNext
public boolean hasNext()
Returns true if there are any following siblings remain; false otherwise.- Specified by:
hasNextin interfaceIterator- Returns:
- true if any following siblings remain; false otherwise
- See Also:
Iterator.hasNext()
-
next
public Object next() throws NoSuchElementException
Returns the next following sibling.- Specified by:
nextin interfaceIterator- Returns:
- the next following sibling
- Throws:
NoSuchElementException- if no following siblings remain- See Also:
Iterator.next()
-
remove
public void remove() throws UnsupportedOperationExceptionThis operation is not supported.- Specified by:
removein interfaceIterator- Throws:
UnsupportedOperationException- always
-
-