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