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