-
- All Superinterfaces:
Iterator<S>
- All Known Implementing Classes:
SnmpRequest.SnmpSubRequestIterator
,SubRequestIteratorSupport
public interface SubRequestIterator<S> extends Iterator<S>
TheSubRequestIterator
interface implements the Iterator interface forSubRequest
instances.- Version:
- 3.1.0
- Author:
- Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
hasNext()
Returnstrue
if there are more sub-requests to process.S
next()
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:
next
in interfaceIterator<S>
- Returns:
- an unprocessed
SubRequest
instance. - Throws:
NoSuchElementException
- if there are no more elements available.
-
-