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