1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
package java.util;
public class Collections
{
Collections() { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T> int binarySearch(java.util.List<? extends java.lang.Comparable<? super T>> list, T object) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T> int binarySearch(java.util.List<? extends T> list, T object, java.util.Comparator<? super T> comparator) { throw new RuntimeException("Stub!"); }
public static <T> void copy(java.util.List<? super T> destination, java.util.List<? extends T> source) { throw new RuntimeException("Stub!"); }
public static <T> java.util.Enumeration<T> enumeration(java.util.Collection<T> collection) { throw new RuntimeException("Stub!"); }
public static <T> void fill(java.util.List<? super T> list, T object) { throw new RuntimeException("Stub!"); }
public static <T extends java.lang.Object & java.lang.Comparable<? super T>> T max(java.util.Collection<? extends T> collection) { throw new RuntimeException("Stub!"); }
public static <T> T max(java.util.Collection<? extends T> collection, java.util.Comparator<? super T> comparator) { throw new RuntimeException("Stub!"); }
public static <T extends java.lang.Object & java.lang.Comparable<? super T>> T min(java.util.Collection<? extends T> collection) { throw new RuntimeException("Stub!"); }
public static <T> T min(java.util.Collection<? extends T> collection, java.util.Comparator<? super T> comparator) { throw new RuntimeException("Stub!"); }
public static <T> java.util.List<T> nCopies(int length, T object) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static void reverse(java.util.List<?> list) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T> java.util.Comparator<T> reverseOrder() { throw new RuntimeException("Stub!"); }
public static <T> java.util.Comparator<T> reverseOrder(java.util.Comparator<T> c) { throw new RuntimeException("Stub!"); }
public static void shuffle(java.util.List<?> list) { throw new RuntimeException("Stub!"); }
public static void shuffle(java.util.List<?> list, java.util.Random random) { throw new RuntimeException("Stub!"); }
public static <E> java.util.Set<E> singleton(E object) { throw new RuntimeException("Stub!"); }
public static <E> java.util.List<E> singletonList(E object) { throw new RuntimeException("Stub!"); }
public static <K, V> java.util.Map<K, V> singletonMap(K key, V value) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T extends java.lang.Comparable<? super T>> void sort(java.util.List<T> list) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T> void sort(java.util.List<T> list, java.util.Comparator<? super T> comparator) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static void swap(java.util.List<?> list, int index1, int index2) { throw new RuntimeException("Stub!"); }
public static <T> boolean replaceAll(java.util.List<T> list, T obj, T obj2) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static void rotate(java.util.List<?> lst, int dist) { throw new RuntimeException("Stub!"); }
public static int indexOfSubList(java.util.List<?> list, java.util.List<?> sublist) { throw new RuntimeException("Stub!"); }
public static int lastIndexOfSubList(java.util.List<?> list, java.util.List<?> sublist) { throw new RuntimeException("Stub!"); }
public static <T> java.util.ArrayList<T> list(java.util.Enumeration<T> enumeration) { throw new RuntimeException("Stub!"); }
public static <T> java.util.Collection<T> synchronizedCollection(java.util.Collection<T> collection) { throw new RuntimeException("Stub!"); }
public static <T> java.util.List<T> synchronizedList(java.util.List<T> list) { throw new RuntimeException("Stub!"); }
public static <K, V> java.util.Map<K, V> synchronizedMap(java.util.Map<K, V> map) { throw new RuntimeException("Stub!"); }
public static <E> java.util.Set<E> synchronizedSet(java.util.Set<E> set) { throw new RuntimeException("Stub!"); }
public static <K, V> java.util.SortedMap<K, V> synchronizedSortedMap(java.util.SortedMap<K, V> map) { throw new RuntimeException("Stub!"); }
public static <E> java.util.SortedSet<E> synchronizedSortedSet(java.util.SortedSet<E> set) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <E> java.util.Collection<E> unmodifiableCollection(java.util.Collection<? extends E> collection) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <E> java.util.List<E> unmodifiableList(java.util.List<? extends E> list) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <K, V> java.util.Map<K, V> unmodifiableMap(java.util.Map<? extends K, ? extends V> map) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <E> java.util.Set<E> unmodifiableSet(java.util.Set<? extends E> set) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <K, V> java.util.SortedMap<K, V> unmodifiableSortedMap(java.util.SortedMap<K, ? extends V> map) { throw new RuntimeException("Stub!"); }
public static <E> java.util.SortedSet<E> unmodifiableSortedSet(java.util.SortedSet<E> set) { throw new RuntimeException("Stub!"); }
public static int frequency(java.util.Collection<?> c, java.lang.Object o) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static final <T> java.util.List<T> emptyList() { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static final <T> java.util.Set<T> emptySet() { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static final <K, V> java.util.Map<K, V> emptyMap() { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T> java.util.Enumeration<T> emptyEnumeration() { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static <T> java.util.Iterator<T> emptyIterator() { throw new RuntimeException("Stub!"); }
public static <T> java.util.ListIterator<T> emptyListIterator() { throw new RuntimeException("Stub!"); }
public static <E> java.util.Collection<E> checkedCollection(java.util.Collection<E> c, java.lang.Class<E> type) { throw new RuntimeException("Stub!"); }
public static <K, V> java.util.Map<K, V> checkedMap(java.util.Map<K, V> m, java.lang.Class<K> keyType, java.lang.Class<V> valueType) { throw new RuntimeException("Stub!"); }
public static <E> java.util.List<E> checkedList(java.util.List<E> list, java.lang.Class<E> type) { throw new RuntimeException("Stub!"); }
public static <E> java.util.Set<E> checkedSet(java.util.Set<E> s, java.lang.Class<E> type) { throw new RuntimeException("Stub!"); }
public static <K, V> java.util.SortedMap<K, V> checkedSortedMap(java.util.SortedMap<K, V> m, java.lang.Class<K> keyType, java.lang.Class<V> valueType) { throw new RuntimeException("Stub!"); }
public static <E> java.util.SortedSet<E> checkedSortedSet(java.util.SortedSet<E> s, java.lang.Class<E> type) { throw new RuntimeException("Stub!"); }
@java.lang.SafeVarargs()
public static <T> boolean addAll(java.util.Collection<? super T> c, T... a) { throw new RuntimeException("Stub!"); }
public static boolean disjoint(java.util.Collection<?> c1, java.util.Collection<?> c2) { throw new RuntimeException("Stub!"); }
public static <E> java.util.Set<E> newSetFromMap(java.util.Map<E, java.lang.Boolean> map) { throw new RuntimeException("Stub!"); }
public static <T> java.util.Queue<T> asLifoQueue(java.util.Deque<T> deque) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"unchecked"})
public static final java.util.List EMPTY_LIST;
@java.lang.SuppressWarnings(value={"unchecked"})
public static final java.util.Map EMPTY_MAP;
@java.lang.SuppressWarnings(value={"unchecked"})
public static final java.util.Set EMPTY_SET;
static { EMPTY_LIST = null; EMPTY_MAP = null; EMPTY_SET = null; }
}
|