Save This Page
Home » commons-collections-3.2.1-src » org.apache.commons » collections » primitives » decorators » [javadoc | source]
org.apache.commons.collections.primitives.decorators
abstract class: BaseProxyDoubleCollection [javadoc | source]
java.lang.Object
   org.apache.commons.collections.primitives.decorators.BaseProxyDoubleCollection

All Implemented Interfaces:
    DoubleCollection

Direct Known Subclasses:
    BaseUnmodifiableDoubleList, BaseProxyDoubleList, UnmodifiableDoubleList, NonSerializableUnmodifiableDoubleList

Constructor:
 protected BaseProxyDoubleCollection() 
Method from org.apache.commons.collections.primitives.decorators.BaseProxyDoubleCollection Summary:
add,   addAll,   clear,   contains,   containsAll,   equals,   getProxiedCollection,   hashCode,   isEmpty,   iterator,   removeAll,   removeElement,   retainAll,   size,   toArray,   toArray,   toString
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.collections.primitives.decorators.BaseProxyDoubleCollection Detail:
 public boolean add(double element) 
 public boolean addAll(DoubleCollection c) 
 public  void clear() 
 public boolean contains(double element) 
 public boolean containsAll(DoubleCollection c) 
 public boolean equals(Object obj) 
 abstract protected DoubleCollection getProxiedCollection()
 public int hashCode() 
 public boolean isEmpty() 
 public DoubleIterator iterator() 
 public boolean removeAll(DoubleCollection c) 
 public boolean removeElement(double element) 
 public boolean retainAll(DoubleCollection c) 
 public int size() 
 public double[] toArray() 
 public double[] toArray(double[] a) 
 public String toString()