public interface LogEntryList extends OsidList
Like all OsidLists,
LogEntryList
provides
a means for accessing LogEntry
elements sequentially either
one at a time or many at a time. Examples:
while (lel.hasNext()) { LogEntry entry = lel.getNextLogEntry(); }or
while (lel.hasNext()) { LogEntry[] entries = lel.getNextLogEntries(lel.available()); }
Modifier and Type | Method and Description |
---|---|
LogEntry[] |
getNextLogEntries(long n)
Gets the next set of
LogEntry elements in this list. |
LogEntry |
getNextLogEntry()
Gets the next
LogEntry in this list. |
LogEntry getNextLogEntry() throws OperationFailedException
LogEntry
in this list. LogEntry
in this list. The
hasNext()
method should be used to test that a next
LogEntry
is available before calling this
method.IllegalStateException
- no more elements available in
this listOperationFailedException
- unable to complete requestmandatory
- This method must be implemented. LogEntry[] getNextLogEntries(long n) throws OperationFailedException
LogEntry
elements in this list.
The specified amount must be less than or equal to the return from
available().
n
- the number of LogEntry
elements requested
which must be less than or equal to available()
LogEntry
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.