org.apache.commons.collections.primitives
public abstract class RandomAccessShortList extends AbstractShortCollection implements ShortList
Since: Commons Primitives 0.1
Version: $Revision: 1.2 $ $Date: 2003/10/14 20:04:26 $
Nested Class Summary | |
---|---|
static class | RandomAccessShortList.ComodChecker |
protected static class | RandomAccessShortList.RandomAccessShortListIterator |
protected static class | RandomAccessShortList.RandomAccessShortSubList |
Field Summary | |
---|---|
int | _modCount |
Constructor Summary | |
---|---|
protected | RandomAccessShortList() Constructs an empty list. |
Method Summary | |
---|---|
void | add(int index, short element)
Unsupported in this implementation. |
boolean | add(short element) |
boolean | addAll(int index, ShortCollection collection) |
boolean | equals(Object that) |
abstract short | 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(short element) |
ShortIterator | iterator() |
int | lastIndexOf(short element) |
ShortListIterator | listIterator() |
ShortListIterator | listIterator(int index) |
short | removeElementAt(int index)
Unsupported in this implementation. |
short | set(int index, short element)
Unsupported in this implementation. |
abstract int | size() |
ShortList | 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