static <T> int |
Collections.binarySearch(List<? extends Comparable<? super T>> list,
T object) |
static <T> int |
Collections.binarySearch(List<? extends T> list,
T object,
Comparator<? super T> comparator) |
static int |
Arrays.binarySearch(Object[] array,
int startIndex,
int endIndex,
Object object) |
static int |
Arrays.binarySearch(Object[] array,
Object object) |
void |
ArrayDeque.clear() |
boolean |
ArrayDeque.contains(Object obj) |
boolean |
TreeMap.containsKey(Object key) |
E |
Vector.elementAt(int location) |
Enumeration<V> |
Hashtable.elements() |
static <T> List<T> |
Collections.emptyList() |
static <K,V> Map<K,V> |
Collections.emptyMap() |
static <T> Set<T> |
Collections.emptySet() |
E |
Vector.firstElement() |
V |
TreeMap.get(Object key) |
SortedSet<E> |
TreeSet.headSet(E end) |
NavigableSet<E> |
TreeSet.headSet(E end,
boolean endInclusive) |
Iterator<E> |
ArrayDeque.iterator() |
Enumeration<K> |
Hashtable.keys() |
E |
Vector.lastElement() |
NavigableSet<K> |
TreeMap.navigableKeySet() |
void |
Observable.notifyObservers(Object data) |
E |
Stack.peek() |
E |
Stack.pop() |
E |
Vector.remove(int location) |
V |
TreeMap.remove(Object key) |
static void |
Collections.reverse(List<?> list) |
static <T> Comparator<T> |
Collections.reverseOrder() |
static void |
Collections.rotate(List<?> lst,
int dist) |
E |
Vector.set(int location,
E object) |
static <T extends Comparable<? super T>> void |
Collections.sort(List<T> list) |
static <T> void |
Collections.sort(List<T> list,
Comparator<? super T> comparator) |
NavigableSet<E> |
TreeSet.subSet(E start,
boolean startInclusive,
E end,
boolean endInclusive) |
SortedSet<E> |
TreeSet.subSet(E start,
E end) |
static void |
Collections.swap(List<?> list,
int index1,
int index2) |
SortedSet<E> |
TreeSet.tailSet(E start) |
NavigableSet<E> |
TreeSet.tailSet(E start,
boolean startInclusive) |
<T> T[] |
Vector.toArray(T[] contents) |
<T> T[] |
LinkedList.toArray(T[] contents) |
<T> T[] |
ArrayList.toArray(T[] contents) |
<T> T[] |
AbstractList.toArray(T[] contents) |
<T> T[] |
AbstractCollection.toArray(T[] contents) |
static <E> Collection<E> |
Collections.unmodifiableCollection(Collection<? extends E> collection) |
static <E> List<E> |
Collections.unmodifiableList(List<? extends E> list) |
static <K,V> Map<K,V> |
Collections.unmodifiableMap(Map<? extends K,? extends V> map) |
static <E> Set<E> |
Collections.unmodifiableSet(Set<? extends E> set) |
static <K,V> SortedMap<K,V> |
Collections.unmodifiableSortedMap(SortedMap<K,? extends V> map) |