1 17 package org.apache.commons.collections.primitives; 18 19 28 public interface BooleanListIterator extends BooleanIterator { 29 51 void add(boolean element); 52 53 62 boolean hasNext(); 63 64 73 boolean hasPrevious(); 74 75 82 boolean next(); 83 84 91 int nextIndex(); 92 93 100 boolean previous(); 101 102 109 int previousIndex(); 110 111 123 void remove(); 124 125 140 void set(boolean element); 141 } 142 | Popular Tags |