-
- All Superinterfaces:
Iterator<S>
- All Known Implementing Classes:
SnmpRequest.SnmpSubRequestIterator,SubRequestIteratorSupport
public interface SubRequestIterator<S> extends Iterator<S>
TheSubRequestIteratorinterface implements the Iterator interface forSubRequestinstances.- Version:
- 3.1.0
- Author:
- Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasNext()Returnstrueif there are more sub-requests to process.Snext()Gets the next sub-request that is pending.-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
-
-
-
Method Detail
-
next
S next() throws NoSuchElementException
Gets the next sub-request that is pending.- Specified by:
nextin interfaceIterator<S>- Returns:
- an unprocessed
SubRequestinstance. - Throws:
NoSuchElementException- if there are no more elements available.
-
-