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