org.apache.commons.collections.primitives
public abstract class RandomAccessIntList extends AbstractIntCollection implements IntList
Since: Commons Primitives 1.0
Version: $Revision: 1.3 $ $Date: 2003/10/16 20:49:35 $
Nested Class Summary | |
---|---|
static class | RandomAccessIntList.ComodChecker |
protected static class | RandomAccessIntList.RandomAccessIntListIterator |
protected static class | RandomAccessIntList.RandomAccessIntSubList |
Field Summary | |
---|---|
int | _modCount |
Constructor Summary | |
---|---|
protected | RandomAccessIntList() Constructs an empty list. |
Method Summary | |
---|---|
void | add(int index, int element)
Unsupported in this implementation. |
boolean | add(int element) |
boolean | addAll(int index, IntCollection collection) |
boolean | equals(Object that) |
abstract int | 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(int element) |
IntIterator | iterator() |
int | lastIndexOf(int element) |
IntListIterator | listIterator() |
IntListIterator | listIterator(int index) |
int | removeElementAt(int index)
Unsupported in this implementation. |
int | set(int index, int element)
Unsupported in this implementation. |
abstract int | size() |
IntList | 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