org.apache.commons.collections.primitives.adapters

Class AbstractListIntList

abstract class AbstractListIntList extends AbstractCollectionIntCollection implements IntList

Since: Commons Primitives 1.0

Version: $Revision: 1.3 $ $Date: 2003/10/16 20:49:39 $

Author: Rodney Waldhoff

Method Summary
voidadd(int index, int element)
booleanaddAll(int index, IntCollection collection)
booleanequals(Object obj)
intget(int index)
protected CollectiongetCollection()
protected abstract ListgetList()
inthashCode()
intindexOf(int element)
intlastIndexOf(int element)
IntListIteratorlistIterator()
wraps the IntList returned by my underlying IntListIterator, if any.
IntListIteratorlistIterator(int index)
wraps the IntList returned by my underlying IntListIterator, if any.
intremoveElementAt(int index)
intset(int index, int element)
IntListsubList(int fromIndex, int toIndex)

Method Detail

add

public void add(int index, int element)

addAll

public boolean addAll(int index, IntCollection collection)

equals

public boolean equals(Object obj)

get

public int get(int index)

getCollection

protected final Collection getCollection()

getList

protected abstract List getList()

hashCode

public int hashCode()

indexOf

public int indexOf(int element)

lastIndexOf

public int lastIndexOf(int element)

listIterator

public IntListIterator listIterator()
wraps the IntList returned by my underlying IntListIterator, if any.

listIterator

public IntListIterator listIterator(int index)
wraps the IntList returned by my underlying IntListIterator, if any.

removeElementAt

public int removeElementAt(int index)

set

public int set(int index, int element)

subList

public IntList subList(int fromIndex, int toIndex)
Copyright (c) 2002-2003 - Apache Software Foundation