1 17 package org.apache.commons.collections.primitives; 18 19 28 public interface BooleanList extends BooleanCollection { 29 47 boolean add(boolean element); 48 49 63 void add(int index, boolean element); 64 65 83 boolean addAll(int index, BooleanCollection collection); 84 85 100 boolean equals(Object that); 101 102 110 boolean get(int index); 111 112 131 int hashCode(); 132 133 141 int indexOf(boolean element); 142 143 148 BooleanIterator iterator(); 149 150 158 int lastIndexOf(boolean element); 159 160 164 BooleanListIterator listIterator(); 165 166 177 BooleanListIterator listIterator(int index); 178 179 192 boolean removeElementAt(int index); 193 194 206 boolean set(int index, boolean element); 207 208 232 BooleanList subList(int fromIndex, int toIndex); 233 234 } 235 | Popular Tags |