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