|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.jackrabbit.rmi.remote.ArrayIterator
public class ArrayIterator
A simple array-based remote iterator. Used when the iteration is short enough for all the elements to be sent over the network in one go.
| Constructor Summary | |
|---|---|
ArrayIterator(Object[] elements)
Creates an array-based remote iterator from the given array of remote references or serializable objects. |
|
| Method Summary | |
|---|---|
long |
getSize()
Returns the size of the iterator. |
Object[] |
nextObjects()
Returns the underlying array. |
void |
skip(long items)
Skips the first items elements in the array. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ArrayIterator(Object[] elements)
elements - elements of the iteration| Method Detail |
|---|
public long getSize()
getSize in interface RemoteIteratorRemoteIterator.getSize()
public void skip(long items)
throws IllegalArgumentException,
NoSuchElementException
items elements in the array.
Skips the given number of elements in this iteration.
skip in interface RemoteIteratoritems - number of elements to skip
NoSuchElementException - if skipped past the last element
IllegalArgumentExceptionRangeIterator.skip(long)
public Object[] nextObjects()
throws IllegalArgumentException
null if the end of this iteration has
been reached.
To reduce the amount of remote method calls, this method returns an array of one or more elements in this iteration.
nextObjects in interface RemoteIteratornull
IllegalArgumentException - if maxItems is not positiveIterator.next()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||