org.apache.commons.collections.primitives.decorators
abstract class BaseProxyDoubleCollection extends Object implements DoubleCollection
Since: Commons Primitives 1.0
Version: $Revision: 1.1 $ $Date: 2003/10/29 19:39:12 $
Constructor Summary | |
---|---|
protected | BaseProxyDoubleCollection() |
Method Summary | |
---|---|
boolean | add(double element) |
boolean | addAll(DoubleCollection c) |
void | clear() |
boolean | contains(double element) |
boolean | containsAll(DoubleCollection c) |
boolean | equals(Object obj) |
protected abstract DoubleCollection | getProxiedCollection() |
int | hashCode() |
boolean | isEmpty() |
DoubleIterator | iterator() |
boolean | removeAll(DoubleCollection c) |
boolean | removeElement(double element) |
boolean | retainAll(DoubleCollection c) |
int | size() |
double[] | toArray() |
double[] | toArray(double[] a) |
String | toString() |