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