public interface IlvDashboardDiagramIterator
IlvDashboardDiagram
instances.IlvDashboardDiagram
Modifier and Type | Method and Description |
---|---|
boolean |
hasNext()
Tests to see if the collection contains more
IlvDashboardDiagram instances. |
IlvDashboardDiagram |
next()
Returns the next dashboard diagram in the collection.
|
void |
remove()
Removes the
IlvDashboardDiagram instance that was returned
by the last call to next() . |
boolean hasNext()
IlvDashboardDiagram
instances.true
if the collection contains more
IlvDashboardDiagram
instances.next()
IlvDashboardDiagram next()
Note: call this method only after a call to
hasNext()
has returned true
.
NoSuchElementException
- if no more
IlvDashboardDiagram
instances exist in the collection.void remove()
IlvDashboardDiagram
instance that was returned
by the last call to next()
.
This method can be called only once per call to next
.
UnsupportedOperationException
- if the remove
operation is not supported by this iterator.IllegalStateException
- if the next
method has not
yet been called, or the remove
method has already
been called after the last call to next
.© Copyright 2024 Rogue Wave Software, Inc., a Perforce company.. All Rights Reserved.