org.apache.commons.collections.primitives
public abstract class AbstractFloatCollection extends Object implements FloatCollection
FloatIterator.remove.
All other methods have at least some base implementation
derived from these. Subclasses may choose to override
these methods to provide a more efficient implementation.
Since: Commons Primitives 1.0
Version: $Revision: 1.3 $ $Date: 2003/10/16 20:49:36 $
| Constructor Summary | |
|---|---|
| protected | AbstractFloatCollection() |
| Method Summary | |
|---|---|
| boolean | add(float element) Unsupported in this base implementation. |
| boolean | addAll(FloatCollection c) |
| void | clear() |
| boolean | contains(float element) |
| boolean | containsAll(FloatCollection c) |
| boolean | isEmpty() |
| abstract FloatIterator | iterator() |
| boolean | removeAll(FloatCollection c) |
| boolean | removeElement(float element) |
| boolean | retainAll(FloatCollection c) |
| abstract int | size() |
| float[] | toArray() |
| float[] | toArray(float[] a) |