| java.lang.Object com.uwyn.rife.pcj.AbstractIntCollection com.uwyn.rife.pcj.list.AbstractIntList
All known Subclasses: com.uwyn.rife.pcj.list.IntArrayList,
AbstractIntList | abstract public class AbstractIntList extends AbstractIntCollection implements IntList(Code) | | This class represents an abstract base for implementing
lists of int values. All operations that can be implemented
using iterators and the get() and set() methods
are implemented as such. In most cases, this is
hardly an efficient solution, and at least some of those
methods should be overridden by sub-classes.
author: Søren Bak version: 1.2 21-08-2003 19:14 since: 1.0 |
Constructor Summary | |
protected | AbstractIntList() Default constructor to be invoked by sub-classes. |
AbstractIntList | protected AbstractIntList()(Code) | | Default constructor to be invoked by sub-classes.
|
add | public boolean add(int v)(Code) | | |
hashCode | public int hashCode()(Code) | | |
indexOf | public int indexOf(int c)(Code) | | |
indexOf | public int indexOf(int index, int c)(Code) | | since: 1.2 |
lastIndexOf | public int lastIndexOf(int c)(Code) | | |
lastIndexOf | public int lastIndexOf(int index, int c)(Code) | | |
|
|