1 17 package org.apache.commons.collections.primitives; 18 19 30 public interface DoubleList extends DoubleCollection { 31 51 boolean add(double element); 52 53 68 void add(int index, double element); 69 70 87 boolean addAll(int index, DoubleCollection collection); 88 89 104 boolean equals(Object that); 105 106 114 double get(int index); 115 116 134 int hashCode(); 135 136 146 int indexOf(double element); 147 148 153 DoubleIterator iterator(); 154 155 164 int lastIndexOf(double element); 165 166 171 DoubleListIterator listIterator(); 172 173 189 DoubleListIterator listIterator(int index); 190 191 204 double removeElementAt(int index); 205 206 219 double set(int index, double element); 220 221 248 DoubleList subList(int fromIndex, int toIndex); 249 250 } 251 | Popular Tags |