1 17 package org.apache.commons.collections.primitives; 18 19 30 public interface DoubleCollection { 31 51 boolean add(double element); 52 53 66 boolean addAll(DoubleCollection c); 67 68 76 void clear(); 77 78 85 boolean contains(double element); 86 87 95 boolean containsAll(DoubleCollection c); 96 97 101 boolean isEmpty(); 102 103 109 DoubleIterator iterator(); 110 111 128 boolean removeAll(DoubleCollection c); 129 130 141 boolean removeElement(double element); 142 143 159 boolean retainAll(DoubleCollection c); 160 161 165 int size(); 166 167 183 double[] toArray(); 184 185 204 double[] toArray(double[] a); 205 } 206 | Popular Tags |