org.apache.commons.collections.primitives.decorators

Class BaseProxyIntCollection

abstract class BaseProxyIntCollection extends Object implements IntCollection

Since: Commons Primitives 1.0

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

Author: Rodney Waldhoff

Constructor Summary
protected BaseProxyIntCollection()
Method Summary
booleanadd(int element)
booleanaddAll(IntCollection c)
voidclear()
booleancontains(int element)
booleancontainsAll(IntCollection c)
booleanequals(Object obj)
protected abstract IntCollectiongetProxiedCollection()
inthashCode()
booleanisEmpty()
IntIteratoriterator()
booleanremoveAll(IntCollection c)
booleanremoveElement(int element)
booleanretainAll(IntCollection c)
intsize()
int[]toArray()
int[]toArray(int[] a)
StringtoString()

Constructor Detail

BaseProxyIntCollection

protected BaseProxyIntCollection()

Method Detail

add

public boolean add(int element)

addAll

public boolean addAll(IntCollection c)

clear

public void clear()

contains

public boolean contains(int element)

containsAll

public boolean containsAll(IntCollection c)

equals

public boolean equals(Object obj)

getProxiedCollection

protected abstract IntCollection getProxiedCollection()

hashCode

public int hashCode()

isEmpty

public boolean isEmpty()

iterator

public IntIterator iterator()

removeAll

public boolean removeAll(IntCollection c)

removeElement

public boolean removeElement(int element)

retainAll

public boolean retainAll(IntCollection c)

size

public int size()

toArray

public int[] toArray()

toArray

public int[] toArray(int[] a)

toString

public String toString()
Copyright (c) 2002-2003 - Apache Software Foundation