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