1 17 package org.apache.commons.collections.primitives; 18 19 30 public interface DoubleListIterator extends DoubleIterator { 31 53 void add(double element); 54 55 65 boolean hasNext(); 66 67 77 boolean hasPrevious(); 78 79 86 double next(); 87 88 95 int nextIndex(); 96 97 104 double previous(); 105 106 113 int previousIndex(); 114 115 127 void remove(); 128 129 144 void set(double element); 145 } 146 | Popular Tags |