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