void |
List.add(int index,
Object element) |
boolean |
List.add(Object o) |
void |
ListIterator.add(Object o) |
boolean |
Set.add(Object o) |
boolean |
List.addAll(Collection c) |
boolean |
Set.addAll(Collection c) |
boolean |
List.addAll(int index,
Collection c) |
void |
List.clear() |
void |
Map.clear() |
void |
Set.clear() |
Object |
Map.put(Object key,
Object value) |
void |
Map.putAll(Map t) |
void |
Iterator.remove() |
void |
ListIterator.remove() |
Object |
List.remove(int index) |
Object |
Map.remove(Object key) |
boolean |
Set.remove(Object o) |
boolean |
List.removeAll(Collection c) |
boolean |
Set.removeAll(Collection c) |
boolean |
Vector.removeAll(Collection c) |
boolean |
List.retainAll(Collection c) |
boolean |
Set.retainAll(Collection c) |
boolean |
Vector.retainAll(Collection c) |
Object |
List.set(int index,
Object element) |
void |
ListIterator.set(Object o) |
Object |
Collections.UnmodEntry.setValue(Object value) |
Object |
Map.Entry.setValue(Object value) |
List |
Vector.subList(int fromIndex,
int toIndex)
is implemented
this method calls subList in AbstractList
|