package java.util; public class Collections { Collections() { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static int binarySearch(java.util.List> list, T object) { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static int binarySearch(java.util.List list, T object, java.util.Comparator comparator) { throw new RuntimeException("Stub!"); } public static void copy(java.util.List destination, java.util.List source) { throw new RuntimeException("Stub!"); } public static java.util.Enumeration enumeration(java.util.Collection collection) { throw new RuntimeException("Stub!"); } public static void fill(java.util.List list, T object) { throw new RuntimeException("Stub!"); } public static > T max(java.util.Collection collection) { throw new RuntimeException("Stub!"); } public static T max(java.util.Collection collection, java.util.Comparator comparator) { throw new RuntimeException("Stub!"); } public static > T min(java.util.Collection collection) { throw new RuntimeException("Stub!"); } public static T min(java.util.Collection collection, java.util.Comparator comparator) { throw new RuntimeException("Stub!"); } public static java.util.List 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 java.util.Comparator reverseOrder() { throw new RuntimeException("Stub!"); } public static java.util.Comparator reverseOrder(java.util.Comparator 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 java.util.Set singleton(E object) { throw new RuntimeException("Stub!"); } public static java.util.List singletonList(E object) { throw new RuntimeException("Stub!"); } public static java.util.Map singletonMap(K key, V value) { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static > void sort(java.util.List list) { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static void sort(java.util.List list, java.util.Comparator 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 boolean replaceAll(java.util.List 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 java.util.ArrayList list(java.util.Enumeration enumeration) { throw new RuntimeException("Stub!"); } public static java.util.Collection synchronizedCollection(java.util.Collection collection) { throw new RuntimeException("Stub!"); } public static java.util.List synchronizedList(java.util.List list) { throw new RuntimeException("Stub!"); } public static java.util.Map synchronizedMap(java.util.Map map) { throw new RuntimeException("Stub!"); } public static java.util.Set synchronizedSet(java.util.Set set) { throw new RuntimeException("Stub!"); } public static java.util.SortedMap synchronizedSortedMap(java.util.SortedMap map) { throw new RuntimeException("Stub!"); } public static java.util.SortedSet synchronizedSortedSet(java.util.SortedSet set) { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static java.util.Collection unmodifiableCollection(java.util.Collection collection) { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static java.util.List unmodifiableList(java.util.List list) { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static java.util.Map unmodifiableMap(java.util.Map map) { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static java.util.Set unmodifiableSet(java.util.Set set) { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static java.util.SortedMap unmodifiableSortedMap(java.util.SortedMap map) { throw new RuntimeException("Stub!"); } public static java.util.SortedSet unmodifiableSortedSet(java.util.SortedSet 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 java.util.List emptyList() { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static final java.util.Set emptySet() { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static final java.util.Map emptyMap() { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static java.util.Enumeration emptyEnumeration() { throw new RuntimeException("Stub!"); } @java.lang.SuppressWarnings(value={"unchecked"}) public static java.util.Iterator emptyIterator() { throw new RuntimeException("Stub!"); } public static java.util.ListIterator emptyListIterator() { throw new RuntimeException("Stub!"); } public static java.util.Collection checkedCollection(java.util.Collection c, java.lang.Class type) { throw new RuntimeException("Stub!"); } public static java.util.Map checkedMap(java.util.Map m, java.lang.Class keyType, java.lang.Class valueType) { throw new RuntimeException("Stub!"); } public static java.util.List checkedList(java.util.List list, java.lang.Class type) { throw new RuntimeException("Stub!"); } public static java.util.Set checkedSet(java.util.Set s, java.lang.Class type) { throw new RuntimeException("Stub!"); } public static java.util.SortedMap checkedSortedMap(java.util.SortedMap m, java.lang.Class keyType, java.lang.Class valueType) { throw new RuntimeException("Stub!"); } public static java.util.SortedSet checkedSortedSet(java.util.SortedSet s, java.lang.Class type) { throw new RuntimeException("Stub!"); } @java.lang.SafeVarargs() public static boolean addAll(java.util.Collection 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 java.util.Set newSetFromMap(java.util.Map map) { throw new RuntimeException("Stub!"); } public static java.util.Queue asLifoQueue(java.util.Deque 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; } }