org.apache.commons.collections.primitives.decorators

Class BaseProxyByteList

abstract class BaseProxyByteList extends BaseProxyByteCollection implements ByteList

Since: Commons Primitives 1.0

Version: $Revision: 1.1 $ $Date: 2003/10/29 18:33:10 $

Author: Rodney Waldhoff

Constructor Summary
protected BaseProxyByteList()
Method Summary
voidadd(int index, byte element)
booleanaddAll(int index, ByteCollection collection)
byteget(int index)
protected ByteCollectiongetProxiedCollection()
protected abstract ByteListgetProxiedList()
intindexOf(byte element)
intlastIndexOf(byte element)
ByteListIteratorlistIterator()
ByteListIteratorlistIterator(int index)
byteremoveElementAt(int index)
byteset(int index, byte element)
ByteListsubList(int fromIndex, int toIndex)

Constructor Detail

BaseProxyByteList

protected BaseProxyByteList()

Method Detail

add

public void add(int index, byte element)

addAll

public boolean addAll(int index, ByteCollection collection)

get

public byte get(int index)

getProxiedCollection

protected final ByteCollection getProxiedCollection()

getProxiedList

protected abstract ByteList getProxiedList()

indexOf

public int indexOf(byte element)

lastIndexOf

public int lastIndexOf(byte element)

listIterator

public ByteListIterator listIterator()

listIterator

public ByteListIterator listIterator(int index)

removeElementAt

public byte removeElementAt(int index)

set

public byte set(int index, byte element)

subList

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