org.apache.commons.collections.primitives
public abstract class RandomAccessDoubleList extends AbstractDoubleCollection implements DoubleList
Since: Commons Primitives 1.0
Version: $Revision: 1.3 $ $Date: 2003/10/16 20:49:36 $
Nested Class Summary | |
---|---|
static class | RandomAccessDoubleList.ComodChecker |
protected static class | RandomAccessDoubleList.RandomAccessDoubleListIterator |
protected static class | RandomAccessDoubleList.RandomAccessDoubleSubList |
Field Summary | |
---|---|
int | _modCount |
Constructor Summary | |
---|---|
protected | RandomAccessDoubleList() Constructs an empty list. |
Method Summary | |
---|---|
void | add(int index, double element)
Unsupported in this implementation. |
boolean | add(double element) |
boolean | addAll(int index, DoubleCollection collection) |
boolean | equals(Object that) |
abstract double | 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(double element) |
DoubleIterator | iterator() |
int | lastIndexOf(double element) |
DoubleListIterator | listIterator() |
DoubleListIterator | listIterator(int index) |
double | removeElementAt(int index)
Unsupported in this implementation. |
double | set(int index, double element)
Unsupported in this implementation. |
abstract int | size() |
DoubleList | 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