java.util.Iterator<S>
SnmpRequest.SnmpSubRequestIterator
, SubRequestIteratorSupport
public interface SubRequestIterator<S>
extends java.util.Iterator<S>
SubRequestIterator
interface implements
the Iterator interface for SubRequest
instances.Modifier and Type | Method | Description |
---|---|---|
boolean |
hasNext() |
Returns
true if there are more sub-requests to process. |
S |
next() |
Gets the next sub-request that is pending.
|
S next() throws java.util.NoSuchElementException
next
in interface java.util.Iterator<S>
SubRequest
instance.java.util.NoSuchElementException
- if there are no more elements available.boolean hasNext()
true
if there are more sub-requests to process.
In other words, returns true
if next would return an element
rather than throwing an exception.hasNext
in interface java.util.Iterator<S>
true
if there are more sub-requests.Copyright © 2018 SNMP4J.org. All rights reserved.