Package | Description |
---|---|
java.lang | |
java.util |
Modifier and Type | Class and Description |
---|---|
class |
ArrayIndexOutOfBoundsException |
class |
StringIndexOutOfBoundsException |
Modifier and Type | Method and Description |
---|---|
char |
StringBuffer.charAt(int index) |
void |
String.getChars(int srcBegin,
int srcEnd,
char[] dst,
int dstBegin) |
void |
StringBuffer.getChars(int srcOffset,
int srcEnd,
char[] dst,
int dstOffset) |
void |
StringBuffer.setCharAt(int index,
char ch) |
String |
String.substring(int offset,
int endIndex) |
Modifier and Type | Method and Description |
---|---|
void |
List.add(int index,
Object element) |
boolean |
List.addAll(Collection c) |
boolean |
List.addAll(int index,
Collection c) |
Object |
List.get(int index) |
ListIterator |
List.listIterator(int index) |
Object |
List.remove(int index) |
Object |
List.set(int index,
Object element) |
List |
List.subList(int fromIndex,
int toIndex) |