public interface BallotConstrainerList extends OsidList
Like all OsidLists, BallotConstrainerList
provides a means for accessing BallotConstrainer elements
sequentially either one at a time or many at a time. Examples:
while (bcl.hasNext()) {
BallotConstrainer constrainer = bcl.getNextBallotConstrainer();
}
or
while (bcl.hasNext()) {
BallotConstrainer[] constrainers = bcl.getNextBallotConstrainers(bcl.available());
}
| Modifier and Type | Method and Description |
|---|---|
BallotConstrainer |
getNextBallotConstrainer()
Gets the next
BallotConstrainer in this list. |
BallotConstrainer[] |
getNextBallotConstrainers(long n)
Gets the next set of
BallotConstrainer elements in this
list. |
BallotConstrainer getNextBallotConstrainer() throws OperationFailedException
BallotConstrainer in this list. BallotConstrainer in this list. The
hasNext() method should be used to test that a
next BallotConstrainer is available before
calling this method.IllegalStateException - no more elements available in
this listOperationFailedException - unable to complete requestmandatory - This method must be implemented. BallotConstrainer[] getNextBallotConstrainers(long n) throws OperationFailedException
BallotConstrainer elements in this
list. The specified amount must be less than or equal to the return
from available(). n - the number of BallotConstrainer elements
requested which must be less than or equal to
available() BallotConstrainer elements.
The length of the array is less than or equal to the
number specified.IllegalStateException - no more elements available in
this listOperationFailedException - unable to complete requestmandatory - This method must be implemented.