org.apache.commons.collections.primitives
public abstract class RandomAccessLongList extends AbstractLongCollection implements LongList
Since: Commons Primitives 0.1
Version: $Revision: 1.2 $ $Date: 2003/10/14 20:04:26 $
| Nested Class Summary | |
|---|---|
| static class | RandomAccessLongList.ComodChecker |
| protected static class | RandomAccessLongList.RandomAccessLongListIterator |
| protected static class | RandomAccessLongList.RandomAccessLongSubList |
| Field Summary | |
|---|---|
| int | _modCount |
| Constructor Summary | |
|---|---|
| protected | RandomAccessLongList() Constructs an empty list. |
| Method Summary | |
|---|---|
| void | add(int index, long element)
Unsupported in this implementation. |
| boolean | add(long element) |
| boolean | addAll(int index, LongCollection collection) |
| boolean | equals(Object that) |
| abstract long | get(int index) |
| protected int | getModCount() Get my count of structural modifications. |
| int | hashCode() |
| protected void | incrModCount() Increment my count of structural modifications. |
| int | indexOf(long element) |
| LongIterator | iterator() |
| int | lastIndexOf(long element) |
| LongListIterator | listIterator() |
| LongListIterator | listIterator(int index) |
| long | removeElementAt(int index)
Unsupported in this implementation. |
| long | set(int index, long element)
Unsupported in this implementation. |
| abstract int | size() |
| LongList | subList(int fromIndex, int toIndex) |
| String | toString() |
Throws: UnsupportedOperationException since this method is not supported
Throws: UnsupportedOperationException since this method is not supported
Throws: UnsupportedOperationException since this method is not supported