/* * Copyright (C) 2014 The Android Open Source Project * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package java.util; import android.compat.annotation.UnsupportedAppUsage; @SuppressWarnings({"unchecked", "deprecation", "all"}) public class Collections { private Collections() { throw new RuntimeException("Stub!"); } public static > void sort(java.util.List list) { throw new RuntimeException("Stub!"); } public static void sort(java.util.List list, java.util.Comparator c) { throw new RuntimeException("Stub!"); } public static int binarySearch( java.util.List> list, T key) { throw new RuntimeException("Stub!"); } private static int indexedBinarySearch( java.util.List> list, T key) { throw new RuntimeException("Stub!"); } private static int iteratorBinarySearch( java.util.List> list, T key) { throw new RuntimeException("Stub!"); } private static T get(java.util.ListIterator i, int index) { throw new RuntimeException("Stub!"); } public static int binarySearch( java.util.List list, T key, java.util.Comparator c) { throw new RuntimeException("Stub!"); } private static int indexedBinarySearch( java.util.List l, T key, java.util.Comparator c) { throw new RuntimeException("Stub!"); } private static int iteratorBinarySearch( java.util.List l, T key, java.util.Comparator c) { throw new RuntimeException("Stub!"); } public static void reverse(java.util.List list) { 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 rnd) { throw new RuntimeException("Stub!"); } public static void swap(java.util.List list, int i, int j) { throw new RuntimeException("Stub!"); } private static void swap(java.lang.Object[] arr, int i, int j) { throw new RuntimeException("Stub!"); } public static void fill(java.util.List list, T obj) { throw new RuntimeException("Stub!"); } public static void copy(java.util.List dest, java.util.List src) { throw new RuntimeException("Stub!"); } public static > T min( java.util.Collection coll) { throw new RuntimeException("Stub!"); } public static T min( java.util.Collection coll, java.util.Comparator comp) { throw new RuntimeException("Stub!"); } public static > T max( java.util.Collection coll) { throw new RuntimeException("Stub!"); } public static T max( java.util.Collection coll, java.util.Comparator comp) { throw new RuntimeException("Stub!"); } public static void rotate(java.util.List list, int distance) { throw new RuntimeException("Stub!"); } private static void rotate1(java.util.List list, int distance) { throw new RuntimeException("Stub!"); } private static void rotate2(java.util.List list, int distance) { throw new RuntimeException("Stub!"); } public static boolean replaceAll(java.util.List list, T oldVal, T newVal) { throw new RuntimeException("Stub!"); } public static int indexOfSubList(java.util.List source, java.util.List target) { throw new RuntimeException("Stub!"); } public static int lastIndexOfSubList(java.util.List source, java.util.List target) { throw new RuntimeException("Stub!"); } public static java.util.Collection unmodifiableCollection( java.util.Collection c) { throw new RuntimeException("Stub!"); } public static java.util.Set unmodifiableSet(java.util.Set s) { throw new RuntimeException("Stub!"); } public static java.util.SortedSet unmodifiableSortedSet(java.util.SortedSet s) { throw new RuntimeException("Stub!"); } public static java.util.NavigableSet unmodifiableNavigableSet( java.util.NavigableSet s) { throw new RuntimeException("Stub!"); } public static java.util.List unmodifiableList(java.util.List list) { throw new RuntimeException("Stub!"); } public static java.util.Map unmodifiableMap( java.util.Map m) { throw new RuntimeException("Stub!"); } public static java.util.SortedMap unmodifiableSortedMap( java.util.SortedMap m) { throw new RuntimeException("Stub!"); } public static java.util.NavigableMap unmodifiableNavigableMap( java.util.NavigableMap m) { throw new RuntimeException("Stub!"); } public static java.util.Collection synchronizedCollection(java.util.Collection c) { throw new RuntimeException("Stub!"); } static java.util.Collection synchronizedCollection( java.util.Collection c, java.lang.Object mutex) { throw new RuntimeException("Stub!"); } public static java.util.Set synchronizedSet(java.util.Set s) { throw new RuntimeException("Stub!"); } static java.util.Set synchronizedSet(java.util.Set s, java.lang.Object mutex) { throw new RuntimeException("Stub!"); } public static java.util.SortedSet synchronizedSortedSet(java.util.SortedSet s) { throw new RuntimeException("Stub!"); } public static java.util.NavigableSet synchronizedNavigableSet( java.util.NavigableSet s) { throw new RuntimeException("Stub!"); } public static java.util.List synchronizedList(java.util.List list) { throw new RuntimeException("Stub!"); } static java.util.List synchronizedList(java.util.List list, java.lang.Object mutex) { throw new RuntimeException("Stub!"); } public static java.util.Map synchronizedMap(java.util.Map m) { throw new RuntimeException("Stub!"); } public static java.util.SortedMap synchronizedSortedMap( java.util.SortedMap m) { throw new RuntimeException("Stub!"); } public static java.util.NavigableMap synchronizedNavigableMap( java.util.NavigableMap m) { throw new RuntimeException("Stub!"); } public static java.util.Collection checkedCollection( java.util.Collection c, java.lang.Class type) { throw new RuntimeException("Stub!"); } static T[] zeroLengthArray(java.lang.Class type) { throw new RuntimeException("Stub!"); } public static java.util.Queue checkedQueue( java.util.Queue queue, 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.SortedSet checkedSortedSet( java.util.SortedSet s, java.lang.Class type) { throw new RuntimeException("Stub!"); } public static java.util.NavigableSet checkedNavigableSet( java.util.NavigableSet s, java.lang.Class type) { 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.Map checkedMap( java.util.Map m, java.lang.Class keyType, java.lang.Class valueType) { 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.NavigableMap checkedNavigableMap( java.util.NavigableMap m, java.lang.Class keyType, java.lang.Class valueType) { throw new RuntimeException("Stub!"); } public static java.util.Iterator emptyIterator() { throw new RuntimeException("Stub!"); } public static java.util.ListIterator emptyListIterator() { throw new RuntimeException("Stub!"); } public static java.util.Enumeration emptyEnumeration() { throw new RuntimeException("Stub!"); } public static final java.util.Set emptySet() { throw new RuntimeException("Stub!"); } public static java.util.SortedSet emptySortedSet() { throw new RuntimeException("Stub!"); } public static java.util.NavigableSet emptyNavigableSet() { throw new RuntimeException("Stub!"); } public static final java.util.List emptyList() { throw new RuntimeException("Stub!"); } public static final java.util.Map emptyMap() { throw new RuntimeException("Stub!"); } public static final java.util.SortedMap emptySortedMap() { throw new RuntimeException("Stub!"); } public static final java.util.NavigableMap emptyNavigableMap() { throw new RuntimeException("Stub!"); } public static java.util.Set singleton(T o) { throw new RuntimeException("Stub!"); } static java.util.Iterator singletonIterator(E e) { throw new RuntimeException("Stub!"); } static java.util.Spliterator singletonSpliterator(T element) { throw new RuntimeException("Stub!"); } public static java.util.List singletonList(T o) { throw new RuntimeException("Stub!"); } public static java.util.Map singletonMap(K key, V value) { throw new RuntimeException("Stub!"); } public static java.util.List nCopies(int n, T o) { throw new RuntimeException("Stub!"); } public static java.util.Comparator reverseOrder() { throw new RuntimeException("Stub!"); } public static java.util.Comparator reverseOrder(java.util.Comparator cmp) { throw new RuntimeException("Stub!"); } public static java.util.Enumeration enumeration(java.util.Collection c) { throw new RuntimeException("Stub!"); } public static java.util.ArrayList list(java.util.Enumeration e) { throw new RuntimeException("Stub!"); } static boolean eq(java.lang.Object o1, java.lang.Object o2) { throw new RuntimeException("Stub!"); } public static int frequency(java.util.Collection c, java.lang.Object o) { throw new RuntimeException("Stub!"); } public static boolean disjoint(java.util.Collection c1, java.util.Collection c2) { throw new RuntimeException("Stub!"); } public static boolean addAll(java.util.Collection c, T... elements) { 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!"); } private static final int BINARYSEARCH_THRESHOLD = 5000; // 0x1388 private static final int COPY_THRESHOLD = 10; // 0xa public static final java.util.List EMPTY_LIST; static { EMPTY_LIST = null; } public static final java.util.Map EMPTY_MAP; static { EMPTY_MAP = null; } public static final java.util.Set EMPTY_SET; static { EMPTY_SET = null; } private static final int FILL_THRESHOLD = 25; // 0x19 private static final int INDEXOFSUBLIST_THRESHOLD = 35; // 0x23 private static final int REPLACEALL_THRESHOLD = 11; // 0xb private static final int REVERSE_THRESHOLD = 18; // 0x12 private static final int ROTATE_THRESHOLD = 100; // 0x64 private static final int SHUFFLE_THRESHOLD = 5; // 0x5 private static java.util.Random r; @SuppressWarnings({"unchecked", "deprecation", "all"}) static class AsLIFOQueue extends java.util.AbstractQueue implements java.util.Queue, java.io.Serializable { AsLIFOQueue(java.util.Deque q) { throw new RuntimeException("Stub!"); } public boolean add(E e) { throw new RuntimeException("Stub!"); } public boolean offer(E e) { throw new RuntimeException("Stub!"); } public E poll() { throw new RuntimeException("Stub!"); } public E remove() { throw new RuntimeException("Stub!"); } public E peek() { throw new RuntimeException("Stub!"); } public E element() { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object o) { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public boolean removeAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public boolean retainAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream stream() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream parallelStream() { throw new RuntimeException("Stub!"); } private final java.util.Deque q; { q = null; } private static final long serialVersionUID = 1802017725587941708L; // 0x19020d92eca0694cL } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedCollection implements java.util.Collection, java.io.Serializable { CheckedCollection(java.util.Collection c, java.lang.Class type) { throw new RuntimeException("Stub!"); } E typeCheck(java.lang.Object o) { throw new RuntimeException("Stub!"); } private java.lang.String badElementMsg(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object o) { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object o) { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean removeAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean retainAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public boolean add(E e) { throw new RuntimeException("Stub!"); } private E[] zeroLengthElementArray() { throw new RuntimeException("Stub!"); } java.util.Collection checkedCopyOf(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean addAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream stream() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream parallelStream() { throw new RuntimeException("Stub!"); } final java.util.Collection c; { c = null; } private static final long serialVersionUID = 1578914078182001775L; // 0x15e96dfd18e6cc6fL final java.lang.Class type; { type = null; } private E[] zeroLengthElementArray; } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedList extends java.util.Collections.CheckedCollection implements java.util.List { CheckedList(java.util.List list, java.lang.Class type) { super(null, null); throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public E get(int index) { throw new RuntimeException("Stub!"); } public E remove(int index) { throw new RuntimeException("Stub!"); } public int indexOf(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int lastIndexOf(java.lang.Object o) { throw new RuntimeException("Stub!"); } public E set(int index, E element) { throw new RuntimeException("Stub!"); } public void add(int index, E element) { throw new RuntimeException("Stub!"); } public boolean addAll(int index, java.util.Collection c) { throw new RuntimeException("Stub!"); } public java.util.ListIterator listIterator() { throw new RuntimeException("Stub!"); } public java.util.ListIterator listIterator(int index) { throw new RuntimeException("Stub!"); } public java.util.List subList(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } public void replaceAll(java.util.function.UnaryOperator operator) { throw new RuntimeException("Stub!"); } public void sort(java.util.Comparator c) { throw new RuntimeException("Stub!"); } final java.util.List list; { list = null; } private static final long serialVersionUID = 65247728283967356L; // 0xe7ce7692c45f7cL } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class CheckedMap implements java.util.Map, java.io.Serializable { CheckedMap( java.util.Map m, java.lang.Class keyType, java.lang.Class valueType) { throw new RuntimeException("Stub!"); } private void typeCheck(java.lang.Object key, java.lang.Object value) { throw new RuntimeException("Stub!"); } private java.util.function.BiFunction typeCheck( java.util.function.BiFunction func) { throw new RuntimeException("Stub!"); } private java.lang.String badKeyMsg(java.lang.Object key) { throw new RuntimeException("Stub!"); } private java.lang.String badValueMsg(java.lang.Object value) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean containsKey(java.lang.Object key) { throw new RuntimeException("Stub!"); } public boolean containsValue(java.lang.Object v) { throw new RuntimeException("Stub!"); } public V get(java.lang.Object key) { throw new RuntimeException("Stub!"); } public V remove(java.lang.Object key) { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public java.util.Set keySet() { throw new RuntimeException("Stub!"); } public java.util.Collection values() { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public V put(K key, V value) { throw new RuntimeException("Stub!"); } public void putAll(java.util.Map t) { throw new RuntimeException("Stub!"); } public java.util.Set> entrySet() { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.BiConsumer action) { throw new RuntimeException("Stub!"); } public void replaceAll( java.util.function.BiFunction function) { throw new RuntimeException("Stub!"); } public V putIfAbsent(K key, V value) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object key, java.lang.Object value) { throw new RuntimeException("Stub!"); } public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } public V replace(K key, V value) { throw new RuntimeException("Stub!"); } public V computeIfAbsent( K key, java.util.function.Function mappingFunction) { throw new RuntimeException("Stub!"); } public V computeIfPresent( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V compute( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V merge( K key, V value, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } private transient java.util.Set> entrySet; final java.lang.Class keyType; { keyType = null; } private final java.util.Map m; { m = null; } private static final long serialVersionUID = 5742860141034234728L; // 0x4fb2bcdf0d186368L final java.lang.Class valueType; { valueType = null; } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedEntrySet implements java.util.Set> { CheckedEntrySet( java.util.Set> s, java.lang.Class valueType) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public boolean add(java.util.Map.Entry e) { throw new RuntimeException("Stub!"); } public boolean addAll(java.util.Collection> coll) { throw new RuntimeException("Stub!"); } public java.util.Iterator> iterator() { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean removeAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public boolean retainAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } private boolean batchRemove(java.util.Collection c, boolean complement) { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } static java.util.Collections.CheckedMap.CheckedEntrySet.CheckedEntry checkedEntry( java.util.Map.Entry e, java.lang.Class valueType) { throw new RuntimeException("Stub!"); } private final java.util.Set> s; { s = null; } private final java.lang.Class valueType; { valueType = null; } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class CheckedEntry implements java.util.Map.Entry { CheckedEntry(java.util.Map.Entry e, java.lang.Class valueType) { throw new RuntimeException("Stub!"); } public K getKey() { throw new RuntimeException("Stub!"); } public V getValue() { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public V setValue(V value) { throw new RuntimeException("Stub!"); } private java.lang.String badValueMsg(java.lang.Object value) { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } private final java.util.Map.Entry e; { e = null; } private final java.lang.Class valueType; { valueType = null; } } } } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedNavigableMap extends java.util.Collections.CheckedSortedMap implements java.util.NavigableMap, java.io.Serializable { CheckedNavigableMap( java.util.NavigableMap m, java.lang.Class keyType, java.lang.Class valueType) { super(null, null, null); throw new RuntimeException("Stub!"); } public java.util.Comparator comparator() { throw new RuntimeException("Stub!"); } public K firstKey() { throw new RuntimeException("Stub!"); } public K lastKey() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry lowerEntry(K key) { throw new RuntimeException("Stub!"); } public K lowerKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry floorEntry(K key) { throw new RuntimeException("Stub!"); } public K floorKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry ceilingEntry(K key) { throw new RuntimeException("Stub!"); } public K ceilingKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry higherEntry(K key) { throw new RuntimeException("Stub!"); } public K higherKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry firstEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry lastEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry pollFirstEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry pollLastEntry() { throw new RuntimeException("Stub!"); } public java.util.NavigableMap descendingMap() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet keySet() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet navigableKeySet() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet descendingKeySet() { throw new RuntimeException("Stub!"); } public java.util.NavigableMap subMap(K fromKey, K toKey) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap headMap(K toKey) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap tailMap(K fromKey) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap headMap(K toKey, boolean inclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap tailMap(K fromKey, boolean inclusive) { throw new RuntimeException("Stub!"); } private final java.util.NavigableMap nm; { nm = null; } private static final long serialVersionUID = -4852462692372534096L; // 0xbca896e4074cacb0L } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedNavigableSet extends java.util.Collections.CheckedSortedSet implements java.util.NavigableSet, java.io.Serializable { CheckedNavigableSet(java.util.NavigableSet s, java.lang.Class type) { super(null, null); throw new RuntimeException("Stub!"); } public E lower(E e) { throw new RuntimeException("Stub!"); } public E floor(E e) { throw new RuntimeException("Stub!"); } public E ceiling(E e) { throw new RuntimeException("Stub!"); } public E higher(E e) { throw new RuntimeException("Stub!"); } public E pollFirst() { throw new RuntimeException("Stub!"); } public E pollLast() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet descendingSet() { throw new RuntimeException("Stub!"); } public java.util.Iterator descendingIterator() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet subSet(E fromElement, E toElement) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet headSet(E toElement) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet tailSet(E fromElement) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet headSet(E toElement, boolean inclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet tailSet(E fromElement, boolean inclusive) { throw new RuntimeException("Stub!"); } private final java.util.NavigableSet ns; { ns = null; } private static final long serialVersionUID = -5429120189805438922L; // 0xb4a7e3f3bbbed836L } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedQueue extends java.util.Collections.CheckedCollection implements java.util.Queue, java.io.Serializable { CheckedQueue(java.util.Queue queue, java.lang.Class elementType) { super(null, null); throw new RuntimeException("Stub!"); } public E element() { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public E peek() { throw new RuntimeException("Stub!"); } public E poll() { throw new RuntimeException("Stub!"); } public E remove() { throw new RuntimeException("Stub!"); } public boolean offer(E e) { throw new RuntimeException("Stub!"); } final java.util.Queue queue; { queue = null; } private static final long serialVersionUID = 1433151992604707767L; // 0x13e39424e458cbb7L } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedRandomAccessList extends java.util.Collections.CheckedList implements java.util.RandomAccess { CheckedRandomAccessList(java.util.List list, java.lang.Class type) { super(null, null); throw new RuntimeException("Stub!"); } public java.util.List subList(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 1638200125423088369L; // 0x16bc0e55a2d7f2f1L } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedSet extends java.util.Collections.CheckedCollection implements java.util.Set, java.io.Serializable { CheckedSet(java.util.Set s, java.lang.Class elementType) { super(null, null); throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 4694047833775013803L; // 0x41249ba27ad9ffabL } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedSortedMap extends java.util.Collections.CheckedMap implements java.util.SortedMap, java.io.Serializable { CheckedSortedMap( java.util.SortedMap m, java.lang.Class keyType, java.lang.Class valueType) { super(null, null, null); throw new RuntimeException("Stub!"); } public java.util.Comparator comparator() { throw new RuntimeException("Stub!"); } public K firstKey() { throw new RuntimeException("Stub!"); } public K lastKey() { throw new RuntimeException("Stub!"); } public java.util.SortedMap subMap(K fromKey, K toKey) { throw new RuntimeException("Stub!"); } public java.util.SortedMap headMap(K toKey) { throw new RuntimeException("Stub!"); } public java.util.SortedMap tailMap(K fromKey) { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 1599671320688067438L; // 0x16332c973afe036eL private final java.util.SortedMap sm; { sm = null; } } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class CheckedSortedSet extends java.util.Collections.CheckedSet implements java.util.SortedSet, java.io.Serializable { CheckedSortedSet(java.util.SortedSet s, java.lang.Class type) { super(null, null); throw new RuntimeException("Stub!"); } public java.util.Comparator comparator() { throw new RuntimeException("Stub!"); } public E first() { throw new RuntimeException("Stub!"); } public E last() { throw new RuntimeException("Stub!"); } public java.util.SortedSet subSet(E fromElement, E toElement) { throw new RuntimeException("Stub!"); } public java.util.SortedSet headSet(E toElement) { throw new RuntimeException("Stub!"); } public java.util.SortedSet tailSet(E fromElement) { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 1599911165492914959L; // 0x163406ba7362eb0fL private final java.util.SortedSet ss; { ss = null; } } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class CopiesList extends java.util.AbstractList implements java.util.RandomAccess, java.io.Serializable { CopiesList(int n, E e) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object obj) { throw new RuntimeException("Stub!"); } public int indexOf(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int lastIndexOf(java.lang.Object o) { throw new RuntimeException("Stub!"); } public E get(int index) { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public java.util.List subList(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } public java.util.stream.Stream stream() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream parallelStream() { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } final E element; { element = null; } final int n; { n = 0; } private static final long serialVersionUID = 2739099268398711800L; // 0x26033c45b17003f8L } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class EmptyEnumeration implements java.util.Enumeration { private EmptyEnumeration() { throw new RuntimeException("Stub!"); } public boolean hasMoreElements() { throw new RuntimeException("Stub!"); } public E nextElement() { throw new RuntimeException("Stub!"); } static final java.util.Collections.EmptyEnumeration EMPTY_ENUMERATION; static { EMPTY_ENUMERATION = null; } } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class EmptyIterator implements java.util.Iterator { private EmptyIterator() { throw new RuntimeException("Stub!"); } public boolean hasNext() { throw new RuntimeException("Stub!"); } public E next() { throw new RuntimeException("Stub!"); } public void remove() { throw new RuntimeException("Stub!"); } public void forEachRemaining(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } static final java.util.Collections.EmptyIterator EMPTY_ITERATOR; static { EMPTY_ITERATOR = null; } } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class EmptyList extends java.util.AbstractList implements java.util.RandomAccess, java.io.Serializable { @UnsupportedAppUsage private EmptyList() { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public java.util.ListIterator listIterator() { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object obj) { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public E get(int index) { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } public void replaceAll(java.util.function.UnaryOperator operator) { throw new RuntimeException("Stub!"); } public void sort(java.util.Comparator c) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } private java.lang.Object readResolve() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 8842843931221139166L; // 0x7ab817b43ca79edeL } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class EmptyListIterator extends java.util.Collections.EmptyIterator implements java.util.ListIterator { private EmptyListIterator() { throw new RuntimeException("Stub!"); } public boolean hasPrevious() { throw new RuntimeException("Stub!"); } public E previous() { throw new RuntimeException("Stub!"); } public int nextIndex() { throw new RuntimeException("Stub!"); } public int previousIndex() { throw new RuntimeException("Stub!"); } public void set(E e) { throw new RuntimeException("Stub!"); } public void add(E e) { throw new RuntimeException("Stub!"); } static final java.util.Collections.EmptyListIterator EMPTY_ITERATOR; static { EMPTY_ITERATOR = null; } } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class EmptyMap extends java.util.AbstractMap implements java.io.Serializable { @UnsupportedAppUsage private EmptyMap() { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean containsKey(java.lang.Object key) { throw new RuntimeException("Stub!"); } public boolean containsValue(java.lang.Object value) { throw new RuntimeException("Stub!"); } public V get(java.lang.Object key) { throw new RuntimeException("Stub!"); } public java.util.Set keySet() { throw new RuntimeException("Stub!"); } public java.util.Collection values() { throw new RuntimeException("Stub!"); } public java.util.Set> entrySet() { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public V getOrDefault(java.lang.Object k, V defaultValue) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.BiConsumer action) { throw new RuntimeException("Stub!"); } public void replaceAll( java.util.function.BiFunction function) { throw new RuntimeException("Stub!"); } public V putIfAbsent(K key, V value) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object key, java.lang.Object value) { throw new RuntimeException("Stub!"); } public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } public V replace(K key, V value) { throw new RuntimeException("Stub!"); } public V computeIfAbsent( K key, java.util.function.Function mappingFunction) { throw new RuntimeException("Stub!"); } public V computeIfPresent( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V compute( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V merge( K key, V value, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } private java.lang.Object readResolve() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 6428348081105594320L; // 0x593614855adce7d0L } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class EmptySet extends java.util.AbstractSet implements java.io.Serializable { private EmptySet() { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object obj) { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } private java.lang.Object readResolve() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 1582296315990362920L; // 0x15f5721db403cb28L } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class ReverseComparator implements java.util.Comparator>, java.io.Serializable { private ReverseComparator() { throw new RuntimeException("Stub!"); } public int compare( java.lang.Comparable c1, java.lang.Comparable c2) { throw new RuntimeException("Stub!"); } private java.lang.Object readResolve() { throw new RuntimeException("Stub!"); } public java.util.Comparator> reversed() { throw new RuntimeException("Stub!"); } static final java.util.Collections.ReverseComparator REVERSE_ORDER; static { REVERSE_ORDER = null; } private static final long serialVersionUID = 7207038068494060240L; // 0x64048af0534e4ad0L } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class ReverseComparator2 implements java.util.Comparator, java.io.Serializable { ReverseComparator2(java.util.Comparator cmp) { throw new RuntimeException("Stub!"); } public int compare(T t1, T t2) { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public java.util.Comparator reversed() { throw new RuntimeException("Stub!"); } final java.util.Comparator cmp; { cmp = null; } private static final long serialVersionUID = 4374092139857L; // 0x3fa6c354d51L } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class SetFromMap extends java.util.AbstractSet implements java.util.Set, java.io.Serializable { SetFromMap(java.util.Map map) { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean add(E e) { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public boolean removeAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public boolean retainAll(java.util.Collection c) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream stream() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream parallelStream() { throw new RuntimeException("Stub!"); } private void readObject(java.io.ObjectInputStream stream) throws java.lang.ClassNotFoundException, java.io.IOException { throw new RuntimeException("Stub!"); } private final java.util.Map m; { m = null; } private transient java.util.Set s; private static final long serialVersionUID = 2454657854757543876L; // 0x2210b25045f21fc4L } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class SingletonList extends java.util.AbstractList implements java.util.RandomAccess, java.io.Serializable { SingletonList(E obj) { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object obj) { throw new RuntimeException("Stub!"); } public E get(int index) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } public void replaceAll(java.util.function.UnaryOperator operator) { throw new RuntimeException("Stub!"); } public void sort(java.util.Comparator c) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } private final E element; { element = null; } private static final long serialVersionUID = 3093736618740652951L; // 0x2aef29103ca79b97L } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class SingletonMap extends java.util.AbstractMap implements java.io.Serializable { SingletonMap(K key, V value) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean containsKey(java.lang.Object key) { throw new RuntimeException("Stub!"); } public boolean containsValue(java.lang.Object value) { throw new RuntimeException("Stub!"); } public V get(java.lang.Object key) { throw new RuntimeException("Stub!"); } public java.util.Set keySet() { throw new RuntimeException("Stub!"); } public java.util.Set> entrySet() { throw new RuntimeException("Stub!"); } public java.util.Collection values() { throw new RuntimeException("Stub!"); } public V getOrDefault(java.lang.Object key, V defaultValue) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.BiConsumer action) { throw new RuntimeException("Stub!"); } public void replaceAll( java.util.function.BiFunction function) { throw new RuntimeException("Stub!"); } public V putIfAbsent(K key, V value) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object key, java.lang.Object value) { throw new RuntimeException("Stub!"); } public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } public V replace(K key, V value) { throw new RuntimeException("Stub!"); } public V computeIfAbsent( K key, java.util.function.Function mappingFunction) { throw new RuntimeException("Stub!"); } public V computeIfPresent( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V compute( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V merge( K key, V value, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } private transient java.util.Set> entrySet; private final K k; { k = null; } private transient java.util.Set keySet; private static final long serialVersionUID = -6979724477215052911L; // 0x9f230991717f6b91L private final V v; { v = null; } private transient java.util.Collection values; } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class SingletonSet extends java.util.AbstractSet implements java.io.Serializable { SingletonSet(E e) { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object o) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } private final E element; { element = null; } private static final long serialVersionUID = 3193687207550431679L; // 0x2c52419829c0b1bfL } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class SynchronizedCollection implements java.util.Collection, java.io.Serializable { SynchronizedCollection(java.util.Collection c) { throw new RuntimeException("Stub!"); } SynchronizedCollection(java.util.Collection c, java.lang.Object mutex) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object o) { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public boolean add(E e) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean addAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean removeAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean retainAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer consumer) { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream stream() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream parallelStream() { throw new RuntimeException("Stub!"); } private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException { throw new RuntimeException("Stub!"); } @UnsupportedAppUsage final java.util.Collection c; { c = null; } final java.lang.Object mutex; { mutex = null; } private static final long serialVersionUID = 3053995032091335093L; // 0x2a61f84d099c99b5L } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class SynchronizedList extends java.util.Collections.SynchronizedCollection implements java.util.List { SynchronizedList(java.util.List list) { super((java.util.Collection) null); throw new RuntimeException("Stub!"); } SynchronizedList(java.util.List list, java.lang.Object mutex) { super((java.util.Collection) null); throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public E get(int index) { throw new RuntimeException("Stub!"); } public E set(int index, E element) { throw new RuntimeException("Stub!"); } public void add(int index, E element) { throw new RuntimeException("Stub!"); } public E remove(int index) { throw new RuntimeException("Stub!"); } public int indexOf(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int lastIndexOf(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean addAll(int index, java.util.Collection c) { throw new RuntimeException("Stub!"); } public java.util.ListIterator listIterator() { throw new RuntimeException("Stub!"); } public java.util.ListIterator listIterator(int index) { throw new RuntimeException("Stub!"); } public java.util.List subList(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } public void replaceAll(java.util.function.UnaryOperator operator) { throw new RuntimeException("Stub!"); } public void sort(java.util.Comparator c) { throw new RuntimeException("Stub!"); } private java.lang.Object readResolve() { throw new RuntimeException("Stub!"); } @UnsupportedAppUsage final java.util.List list; { list = null; } private static final long serialVersionUID = -7754090372962971524L; // 0x9463efe38344107cL } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class SynchronizedMap implements java.util.Map, java.io.Serializable { SynchronizedMap(java.util.Map m) { throw new RuntimeException("Stub!"); } SynchronizedMap(java.util.Map m, java.lang.Object mutex) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean containsKey(java.lang.Object key) { throw new RuntimeException("Stub!"); } public boolean containsValue(java.lang.Object value) { throw new RuntimeException("Stub!"); } public V get(java.lang.Object key) { throw new RuntimeException("Stub!"); } public V put(K key, V value) { throw new RuntimeException("Stub!"); } public V remove(java.lang.Object key) { throw new RuntimeException("Stub!"); } public void putAll(java.util.Map map) { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public java.util.Set keySet() { throw new RuntimeException("Stub!"); } public java.util.Set> entrySet() { throw new RuntimeException("Stub!"); } public java.util.Collection values() { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public V getOrDefault(java.lang.Object k, V defaultValue) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.BiConsumer action) { throw new RuntimeException("Stub!"); } public void replaceAll( java.util.function.BiFunction function) { throw new RuntimeException("Stub!"); } public V putIfAbsent(K key, V value) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object key, java.lang.Object value) { throw new RuntimeException("Stub!"); } public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } public V replace(K key, V value) { throw new RuntimeException("Stub!"); } public V computeIfAbsent( K key, java.util.function.Function mappingFunction) { throw new RuntimeException("Stub!"); } public V computeIfPresent( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V compute( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V merge( K key, V value, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException { throw new RuntimeException("Stub!"); } private transient java.util.Set> entrySet; private transient java.util.Set keySet; @UnsupportedAppUsage private final java.util.Map m; { m = null; } final java.lang.Object mutex; { mutex = null; } private static final long serialVersionUID = 1978198479659022715L; // 0x1b73f9094b4b397bL private transient java.util.Collection values; } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class SynchronizedNavigableMap extends java.util.Collections.SynchronizedSortedMap implements java.util.NavigableMap { SynchronizedNavigableMap(java.util.NavigableMap m) { super((java.util.SortedMap) null); throw new RuntimeException("Stub!"); } SynchronizedNavigableMap(java.util.NavigableMap m, java.lang.Object mutex) { super((java.util.SortedMap) null); throw new RuntimeException("Stub!"); } public java.util.Map.Entry lowerEntry(K key) { throw new RuntimeException("Stub!"); } public K lowerKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry floorEntry(K key) { throw new RuntimeException("Stub!"); } public K floorKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry ceilingEntry(K key) { throw new RuntimeException("Stub!"); } public K ceilingKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry higherEntry(K key) { throw new RuntimeException("Stub!"); } public K higherKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry firstEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry lastEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry pollFirstEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry pollLastEntry() { throw new RuntimeException("Stub!"); } public java.util.NavigableMap descendingMap() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet keySet() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet navigableKeySet() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet descendingKeySet() { throw new RuntimeException("Stub!"); } public java.util.SortedMap subMap(K fromKey, K toKey) { throw new RuntimeException("Stub!"); } public java.util.SortedMap headMap(K toKey) { throw new RuntimeException("Stub!"); } public java.util.SortedMap tailMap(K fromKey) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap headMap(K toKey, boolean inclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap tailMap(K fromKey, boolean inclusive) { throw new RuntimeException("Stub!"); } private final java.util.NavigableMap nm; { nm = null; } private static final long serialVersionUID = 699392247599746807L; // 0x9b4bd8b2cd84ef7L } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class SynchronizedNavigableSet extends java.util.Collections.SynchronizedSortedSet implements java.util.NavigableSet { SynchronizedNavigableSet(java.util.NavigableSet s) { super((java.util.SortedSet) null); throw new RuntimeException("Stub!"); } SynchronizedNavigableSet(java.util.NavigableSet s, java.lang.Object mutex) { super((java.util.SortedSet) null); throw new RuntimeException("Stub!"); } public E lower(E e) { throw new RuntimeException("Stub!"); } public E floor(E e) { throw new RuntimeException("Stub!"); } public E ceiling(E e) { throw new RuntimeException("Stub!"); } public E higher(E e) { throw new RuntimeException("Stub!"); } public E pollFirst() { throw new RuntimeException("Stub!"); } public E pollLast() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet descendingSet() { throw new RuntimeException("Stub!"); } public java.util.Iterator descendingIterator() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet subSet(E fromElement, E toElement) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet headSet(E toElement) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet tailSet(E fromElement) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet headSet(E toElement, boolean inclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet tailSet(E fromElement, boolean inclusive) { throw new RuntimeException("Stub!"); } private final java.util.NavigableSet ns; { ns = null; } private static final long serialVersionUID = -5505529816273629798L; // 0xb3986dcd38b04d9aL } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class SynchronizedRandomAccessList extends java.util.Collections.SynchronizedList implements java.util.RandomAccess { SynchronizedRandomAccessList(java.util.List list) { super((java.util.List) null); throw new RuntimeException("Stub!"); } SynchronizedRandomAccessList(java.util.List list, java.lang.Object mutex) { super((java.util.List) null); throw new RuntimeException("Stub!"); } public java.util.List subList(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } private java.lang.Object writeReplace() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 1530674583602358482L; // 0x153e0c6c865668d2L } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class SynchronizedSet extends java.util.Collections.SynchronizedCollection implements java.util.Set { SynchronizedSet(java.util.Set s) { super((java.util.Collection) null); throw new RuntimeException("Stub!"); } SynchronizedSet(java.util.Set s, java.lang.Object mutex) { super((java.util.Collection) null); throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 487447009682186044L; // 0x6c3c27902eedf3cL } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class SynchronizedSortedMap extends java.util.Collections.SynchronizedMap implements java.util.SortedMap { SynchronizedSortedMap(java.util.SortedMap m) { super((java.util.Map) null); throw new RuntimeException("Stub!"); } SynchronizedSortedMap(java.util.SortedMap m, java.lang.Object mutex) { super((java.util.Map) null); throw new RuntimeException("Stub!"); } public java.util.Comparator comparator() { throw new RuntimeException("Stub!"); } public java.util.SortedMap subMap(K fromKey, K toKey) { throw new RuntimeException("Stub!"); } public java.util.SortedMap headMap(K toKey) { throw new RuntimeException("Stub!"); } public java.util.SortedMap tailMap(K fromKey) { throw new RuntimeException("Stub!"); } public K firstKey() { throw new RuntimeException("Stub!"); } public K lastKey() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = -8798146769416483793L; // 0x85e6b420b72e0c2fL private final java.util.SortedMap sm; { sm = null; } } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class SynchronizedSortedSet extends java.util.Collections.SynchronizedSet implements java.util.SortedSet { SynchronizedSortedSet(java.util.SortedSet s) { super((java.util.Set) null); throw new RuntimeException("Stub!"); } SynchronizedSortedSet(java.util.SortedSet s, java.lang.Object mutex) { super((java.util.Set) null); throw new RuntimeException("Stub!"); } public java.util.Comparator comparator() { throw new RuntimeException("Stub!"); } public java.util.SortedSet subSet(E fromElement, E toElement) { throw new RuntimeException("Stub!"); } public java.util.SortedSet headSet(E toElement) { throw new RuntimeException("Stub!"); } public java.util.SortedSet tailSet(E fromElement) { throw new RuntimeException("Stub!"); } public E first() { throw new RuntimeException("Stub!"); } public E last() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 8695801310862127406L; // 0x78adb1384b50312eL private final java.util.SortedSet ss; { ss = null; } } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableCollection implements java.util.Collection, java.io.Serializable { UnmodifiableCollection(java.util.Collection c) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object o) { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public java.util.Iterator iterator() { throw new RuntimeException("Stub!"); } public boolean add(E e) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean addAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean removeAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean retainAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.Consumer action) { throw new RuntimeException("Stub!"); } public boolean removeIf(java.util.function.Predicate filter) { throw new RuntimeException("Stub!"); } public java.util.Spliterator spliterator() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream stream() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream parallelStream() { throw new RuntimeException("Stub!"); } @UnsupportedAppUsage final java.util.Collection c; { c = null; } private static final long serialVersionUID = 1820017752578914078L; // 0x19420080cb5ef71eL } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableList extends java.util.Collections.UnmodifiableCollection implements java.util.List { UnmodifiableList(java.util.List list) { super(null); throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public E get(int index) { throw new RuntimeException("Stub!"); } public E set(int index, E element) { throw new RuntimeException("Stub!"); } public void add(int index, E element) { throw new RuntimeException("Stub!"); } public E remove(int index) { throw new RuntimeException("Stub!"); } public int indexOf(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int lastIndexOf(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean addAll(int index, java.util.Collection c) { throw new RuntimeException("Stub!"); } public void replaceAll(java.util.function.UnaryOperator operator) { throw new RuntimeException("Stub!"); } public void sort(java.util.Comparator c) { throw new RuntimeException("Stub!"); } public java.util.ListIterator listIterator() { throw new RuntimeException("Stub!"); } public java.util.ListIterator listIterator(int index) { throw new RuntimeException("Stub!"); } public java.util.List subList(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } private java.lang.Object readResolve() { throw new RuntimeException("Stub!"); } final java.util.List list; { list = null; } private static final long serialVersionUID = -283967356065247728L; // 0xfc0f2531b5ec8e10L } @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class UnmodifiableMap implements java.util.Map, java.io.Serializable { UnmodifiableMap(java.util.Map m) { throw new RuntimeException("Stub!"); } public int size() { throw new RuntimeException("Stub!"); } public boolean isEmpty() { throw new RuntimeException("Stub!"); } public boolean containsKey(java.lang.Object key) { throw new RuntimeException("Stub!"); } public boolean containsValue(java.lang.Object val) { throw new RuntimeException("Stub!"); } public V get(java.lang.Object key) { throw new RuntimeException("Stub!"); } public V put(K key, V value) { throw new RuntimeException("Stub!"); } public V remove(java.lang.Object key) { throw new RuntimeException("Stub!"); } public void putAll(java.util.Map m) { throw new RuntimeException("Stub!"); } public void clear() { throw new RuntimeException("Stub!"); } public java.util.Set keySet() { throw new RuntimeException("Stub!"); } public java.util.Set> entrySet() { throw new RuntimeException("Stub!"); } public java.util.Collection values() { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } public V getOrDefault(java.lang.Object k, V defaultValue) { throw new RuntimeException("Stub!"); } public void forEach(java.util.function.BiConsumer action) { throw new RuntimeException("Stub!"); } public void replaceAll( java.util.function.BiFunction function) { throw new RuntimeException("Stub!"); } public V putIfAbsent(K key, V value) { throw new RuntimeException("Stub!"); } public boolean remove(java.lang.Object key, java.lang.Object value) { throw new RuntimeException("Stub!"); } public boolean replace(K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); } public V replace(K key, V value) { throw new RuntimeException("Stub!"); } public V computeIfAbsent( K key, java.util.function.Function mappingFunction) { throw new RuntimeException("Stub!"); } public V computeIfPresent( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V compute( K key, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } public V merge( K key, V value, java.util.function.BiFunction remappingFunction) { throw new RuntimeException("Stub!"); } private transient java.util.Set> entrySet; private transient java.util.Set keySet; @UnsupportedAppUsage private final java.util.Map m; { m = null; } private static final long serialVersionUID = -1034234728574286014L; // 0xf1a5a8fe74f50742L private transient java.util.Collection values; @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableEntrySet extends java.util.Collections.UnmodifiableSet> { UnmodifiableEntrySet( java.util.Set> s) { super(null); throw new RuntimeException("Stub!"); } static java.util.function.Consumer> entryConsumer( java.util.function.Consumer> action) { throw new RuntimeException("Stub!"); } public void forEach( java.util.function.Consumer> action) { throw new RuntimeException("Stub!"); } public java.util.Spliterator> spliterator() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream> stream() { throw new RuntimeException("Stub!"); } public java.util.stream.Stream> parallelStream() { throw new RuntimeException("Stub!"); } public java.util.Iterator> iterator() { throw new RuntimeException("Stub!"); } public java.lang.Object[] toArray() { throw new RuntimeException("Stub!"); } public T[] toArray(T[] a) { throw new RuntimeException("Stub!"); } public boolean contains(java.lang.Object o) { throw new RuntimeException("Stub!"); } public boolean containsAll(java.util.Collection coll) { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = 7854390611657943733L; // 0x6d0066a59f08eab5L @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class UnmodifiableEntry implements java.util.Map.Entry { UnmodifiableEntry(java.util.Map.Entry e) { throw new RuntimeException("Stub!"); } public K getKey() { throw new RuntimeException("Stub!"); } public V getValue() { throw new RuntimeException("Stub!"); } public V setValue(V value) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public java.lang.String toString() { throw new RuntimeException("Stub!"); } private java.util.Map.Entry e; } @SuppressWarnings({"unchecked", "deprecation", "all"}) static final class UnmodifiableEntrySetSpliterator implements java.util.Spliterator> { UnmodifiableEntrySetSpliterator( java.util.Spliterator> s) { throw new RuntimeException("Stub!"); } public boolean tryAdvance( java.util.function.Consumer> action) { throw new RuntimeException("Stub!"); } public void forEachRemaining( java.util.function.Consumer> action) { throw new RuntimeException("Stub!"); } public java.util.Spliterator> trySplit() { throw new RuntimeException("Stub!"); } public long estimateSize() { throw new RuntimeException("Stub!"); } public long getExactSizeIfKnown() { throw new RuntimeException("Stub!"); } public int characteristics() { throw new RuntimeException("Stub!"); } public boolean hasCharacteristics(int characteristics) { throw new RuntimeException("Stub!"); } public java.util.Comparator> getComparator() { throw new RuntimeException("Stub!"); } final java.util.Spliterator> s; { s = null; } } } } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableNavigableMap extends java.util.Collections.UnmodifiableSortedMap implements java.util.NavigableMap, java.io.Serializable { UnmodifiableNavigableMap(java.util.NavigableMap m) { super(null); throw new RuntimeException("Stub!"); } public K lowerKey(K key) { throw new RuntimeException("Stub!"); } public K floorKey(K key) { throw new RuntimeException("Stub!"); } public K ceilingKey(K key) { throw new RuntimeException("Stub!"); } public K higherKey(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry lowerEntry(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry floorEntry(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry ceilingEntry(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry higherEntry(K key) { throw new RuntimeException("Stub!"); } public java.util.Map.Entry firstEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry lastEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry pollFirstEntry() { throw new RuntimeException("Stub!"); } public java.util.Map.Entry pollLastEntry() { throw new RuntimeException("Stub!"); } public java.util.NavigableMap descendingMap() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet navigableKeySet() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet descendingKeySet() { throw new RuntimeException("Stub!"); } public java.util.NavigableMap subMap( K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap headMap(K toKey, boolean inclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableMap tailMap(K fromKey, boolean inclusive) { throw new RuntimeException("Stub!"); } private static final java.util.Collections.UnmodifiableNavigableMap.EmptyNavigableMap EMPTY_NAVIGABLE_MAP; static { EMPTY_NAVIGABLE_MAP = null; } private final java.util.NavigableMap nm; { nm = null; } private static final long serialVersionUID = -4858195264774772197L; // 0xbc943925819d6a1bL @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class EmptyNavigableMap extends java.util.Collections.UnmodifiableNavigableMap implements java.io.Serializable { EmptyNavigableMap() { super(null); throw new RuntimeException("Stub!"); } public java.util.NavigableSet navigableKeySet() { throw new RuntimeException("Stub!"); } private java.lang.Object readResolve() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = -2239321462712562324L; // 0xe0ec54fe7d1c0d6cL } } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableNavigableSet extends java.util.Collections.UnmodifiableSortedSet implements java.util.NavigableSet, java.io.Serializable { UnmodifiableNavigableSet(java.util.NavigableSet s) { super(null); throw new RuntimeException("Stub!"); } public E lower(E e) { throw new RuntimeException("Stub!"); } public E floor(E e) { throw new RuntimeException("Stub!"); } public E ceiling(E e) { throw new RuntimeException("Stub!"); } public E higher(E e) { throw new RuntimeException("Stub!"); } public E pollFirst() { throw new RuntimeException("Stub!"); } public E pollLast() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet descendingSet() { throw new RuntimeException("Stub!"); } public java.util.Iterator descendingIterator() { throw new RuntimeException("Stub!"); } public java.util.NavigableSet subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet headSet(E toElement, boolean inclusive) { throw new RuntimeException("Stub!"); } public java.util.NavigableSet tailSet(E fromElement, boolean inclusive) { throw new RuntimeException("Stub!"); } private static final java.util.NavigableSet EMPTY_NAVIGABLE_SET; static { EMPTY_NAVIGABLE_SET = null; } private final java.util.NavigableSet ns; { ns = null; } private static final long serialVersionUID = -6027448201786391929L; // 0xac5a33cb96748287L @SuppressWarnings({"unchecked", "deprecation", "all"}) private static class EmptyNavigableSet extends java.util.Collections.UnmodifiableNavigableSet implements java.io.Serializable { public EmptyNavigableSet() { super(null); throw new RuntimeException("Stub!"); } private java.lang.Object readResolve() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = -6291252904449939134L; // 0xa8b0fad0de1de942L } } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableRandomAccessList extends java.util.Collections.UnmodifiableList implements java.util.RandomAccess { UnmodifiableRandomAccessList(java.util.List list) { super(null); throw new RuntimeException("Stub!"); } public java.util.List subList(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } private java.lang.Object writeReplace() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = -2542308836966382001L; // 0xdcb7e7951f48464fL } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableSet extends java.util.Collections.UnmodifiableCollection implements java.util.Set, java.io.Serializable { UnmodifiableSet(java.util.Set s) { super(null); throw new RuntimeException("Stub!"); } public boolean equals(java.lang.Object o) { throw new RuntimeException("Stub!"); } public int hashCode() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = -9215047833775013803L; // 0x801d92d18f9b8055L } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableSortedMap extends java.util.Collections.UnmodifiableMap implements java.util.SortedMap, java.io.Serializable { UnmodifiableSortedMap(java.util.SortedMap m) { super(null); throw new RuntimeException("Stub!"); } public java.util.Comparator comparator() { throw new RuntimeException("Stub!"); } public java.util.SortedMap subMap(K fromKey, K toKey) { throw new RuntimeException("Stub!"); } public java.util.SortedMap headMap(K toKey) { throw new RuntimeException("Stub!"); } public java.util.SortedMap tailMap(K fromKey) { throw new RuntimeException("Stub!"); } public K firstKey() { throw new RuntimeException("Stub!"); } public K lastKey() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = -8806743815996713206L; // 0x85c82928d3a5d70aL private final java.util.SortedMap sm; { sm = null; } } @SuppressWarnings({"unchecked", "deprecation", "all"}) static class UnmodifiableSortedSet extends java.util.Collections.UnmodifiableSet implements java.util.SortedSet, java.io.Serializable { UnmodifiableSortedSet(java.util.SortedSet s) { super(null); throw new RuntimeException("Stub!"); } public java.util.Comparator comparator() { throw new RuntimeException("Stub!"); } public java.util.SortedSet subSet(E fromElement, E toElement) { throw new RuntimeException("Stub!"); } public java.util.SortedSet headSet(E toElement) { throw new RuntimeException("Stub!"); } public java.util.SortedSet tailSet(E fromElement) { throw new RuntimeException("Stub!"); } public E first() { throw new RuntimeException("Stub!"); } public E last() { throw new RuntimeException("Stub!"); } private static final long serialVersionUID = -4929149591599911165L; // 0xbb98248febecef03L private final java.util.SortedSet ss; { ss = null; } } }