org.apache.commons.collections.primitives.adapters

Class AbstractCollectionFloatCollection

abstract class AbstractCollectionFloatCollection extends Object implements FloatCollection

Since: Commons Primitives 1.0

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

Author: Rodney Waldhoff

Constructor Summary
protected AbstractCollectionFloatCollection()
Method Summary
booleanadd(float element)
booleanaddAll(FloatCollection c)
voidclear()
booleancontains(float element)
booleancontainsAll(FloatCollection c)
protected abstract CollectiongetCollection()
booleanisEmpty()
FloatIteratoriterator()
wraps the java.util.Iterator Iterator returned by my underlying Collection Collection, if any.
booleanremoveAll(FloatCollection c)
booleanremoveElement(float element)
booleanretainAll(FloatCollection c)
intsize()
float[]toArray()
float[]toArray(float[] dest)
StringtoString()

Constructor Detail

AbstractCollectionFloatCollection

protected AbstractCollectionFloatCollection()

Method Detail

add

public boolean add(float element)

addAll

public boolean addAll(FloatCollection c)

clear

public void clear()

contains

public boolean contains(float element)

containsAll

public boolean containsAll(FloatCollection c)

getCollection

protected abstract Collection getCollection()

isEmpty

public boolean isEmpty()

iterator

public FloatIterator iterator()
wraps the java.util.Iterator Iterator returned by my underlying Collection Collection, if any.

removeAll

public boolean removeAll(FloatCollection c)

removeElement

public boolean removeElement(float element)

retainAll

public boolean retainAll(FloatCollection c)

size

public int size()

toArray

public float[] toArray()

toArray

public float[] toArray(float[] dest)

toString

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