1 17 package org.apache.commons.collections.primitives; 18 19 30 public interface LongList extends LongCollection { 31 51 boolean add(long element); 52 53 68 void add(int index, long element); 69 70 87 boolean addAll(int index, LongCollection collection); 88 89 104 boolean equals(Object that); 105 106 114 long get(int index); 115 116 134 int hashCode(); 135 136 146 int indexOf(long element); 147 148 153 LongIterator iterator(); 154 155 164 int lastIndexOf(long element); 165 166 171 LongListIterator listIterator(); 172 173 189 LongListIterator listIterator(int index); 190 191 204 long removeElementAt(int index); 205 206 219 long set(int index, long element); 220 221 248 LongList subList(int fromIndex, int toIndex); 249 250 } 251 | Popular Tags |