1 17 package org.apache.commons.collections.primitives; 18 19 30 public interface IntList extends IntCollection { 31 51 boolean add(int element); 52 53 68 void add(int index, int element); 69 70 87 boolean addAll(int index, IntCollection collection); 88 89 104 boolean equals(Object that); 105 106 114 int get(int index); 115 116 133 int hashCode(); 134 135 145 int indexOf(int element); 146 147 152 IntIterator iterator(); 153 154 163 int lastIndexOf(int element); 164 165 170 IntListIterator listIterator(); 171 172 188 IntListIterator listIterator(int index); 189 190 203 int removeElementAt(int index); 204 205 218 int set(int index, int element); 219 220 247 IntList subList(int fromIndex, int toIndex); 248 249 } 250 | Popular Tags |