210 lines
		
	
	
		
			8.8 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			210 lines
		
	
	
		
			8.8 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlin.collections;
 | |
| 
 | |
| import java.io.Serializable;
 | |
| import java.util.Collection;
 | |
| import java.util.Iterator;
 | |
| import java.util.List;
 | |
| import java.util.ListIterator;
 | |
| import java.util.RandomAccess;
 | |
| import kotlin.Metadata;
 | |
| import kotlin.jvm.internal.CollectionToArray;
 | |
| import kotlin.jvm.internal.Intrinsics;
 | |
| import kotlin.jvm.internal.markers.KMappedMarker;
 | |
| 
 | |
| /* compiled from: Collections.kt */
 | |
| @Metadata(d1 = {"\u0000\\\n\u0002\u0018\u0002\n\u0002\u0010 \n\u0002\u0010\u0001\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0010\b\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u001e\n\u0002\b\u0002\n\u0002\u0010\u0000\n\u0002\b\u0006\n\u0002\u0010(\n\u0002\b\u0002\n\u0002\u0010*\n\u0002\b\u0005\n\u0002\u0010\u000e\n\u0000\bÀ\u0002\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u00012\u00060\u0003j\u0002`\u00042\u00060\u0005j\u0002`\u0006B\u0007\b\u0002¢\u0006\u0002\u0010\u0007J\u0011\u0010\u000e\u001a\u00020\u000f2\u0006\u0010\u0010\u001a\u00020\u0002H\u0096\u0002J\u0016\u0010\u0011\u001a\u00020\u000f2\f\u0010\u0012\u001a\b\u0012\u0004\u0012\u00020\u00020\u0013H\u0016J\u0013\u0010\u0014\u001a\u00020\u000f2\b\u0010\u0015\u001a\u0004\u0018\u00010\u0016H\u0096\u0002J\u0011\u0010\u0017\u001a\u00020\u00022\u0006\u0010\u0018\u001a\u00020\u000bH\u0096\u0002J\b\u0010\u0019\u001a\u00020\u000bH\u0016J\u0010\u0010\u001a\u001a\u00020\u000b2\u0006\u0010\u0010\u001a\u00020\u0002H\u0016J\b\u0010\u001b\u001a\u00020\u000fH\u0016J\u000f\u0010\u001c\u001a\b\u0012\u0004\u0012\u00020\u00020\u001dH\u0096\u0002J\u0010\u0010\u001e\u001a\u00020\u000b2\u0006\u0010\u0010\u001a\u00020\u0002H\u0016J\u000e\u0010\u001f\u001a\b\u0012\u0004\u0012\u00020\u00020 H\u0016J\u0016\u0010\u001f\u001a\b\u0012\u0004\u0012\u00020\u00020 2\u0006\u0010\u0018\u001a\u00020\u000bH\u0016J\b\u0010!\u001a\u00020\u0016H\u0002J\u001e\u0010\"\u001a\b\u0012\u0004\u0012\u00020\u00020\u00012\u0006\u0010#\u001a\u00020\u000b2\u0006\u0010$\u001a\u00020\u000bH\u0016J\b\u0010%\u001a\u00020&H\u0016R\u000e\u0010\b\u001a\u00020\tX\u0082T¢\u0006\u0002\n\u0000R\u0014\u0010\n\u001a\u00020\u000b8VX\u0096\u0004¢\u0006\u0006\u001a\u0004\b\f\u0010\r¨\u0006'"}, d2 = {"Lkotlin/collections/EmptyList;", "", "", "Ljava/io/Serializable;", "Lkotlin/io/Serializable;", "Ljava/util/RandomAccess;", "Lkotlin/collections/RandomAccess;", "()V", "serialVersionUID", "", "size", "", "getSize", "()I", "contains", "", "element", "containsAll", "elements", "", "equals", "other", "", "get", "index", "hashCode", "indexOf", "isEmpty", "iterator", "", "lastIndexOf", "listIterator", "", "readResolve", "subList", "fromIndex", "toIndex", "toString", "", "kotlin-stdlib"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| public final class EmptyList implements List, Serializable, RandomAccess, KMappedMarker {
 | |
|     public static final EmptyList INSTANCE = new EmptyList();
 | |
|     private static final long serialVersionUID = -7390468764508069838L;
 | |
| 
 | |
|     private final Object readResolve() {
 | |
|         return INSTANCE;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public /* bridge */ /* synthetic */ void add(int i, Object obj) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     public void add(int i, Void r2) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public /* bridge */ /* synthetic */ boolean add(Object obj) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     public boolean add(Void r2) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public boolean addAll(int i, Collection collection) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public boolean addAll(Collection collection) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public void clear() {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     public boolean contains(Void element) {
 | |
|         Intrinsics.checkNotNullParameter(element, "element");
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     public int getSize() {
 | |
|         return 0;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public int hashCode() {
 | |
|         return 1;
 | |
|     }
 | |
| 
 | |
|     public int indexOf(Void element) {
 | |
|         Intrinsics.checkNotNullParameter(element, "element");
 | |
|         return -1;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public boolean isEmpty() {
 | |
|         return true;
 | |
|     }
 | |
| 
 | |
|     public int lastIndexOf(Void element) {
 | |
|         Intrinsics.checkNotNullParameter(element, "element");
 | |
|         return -1;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public /* bridge */ /* synthetic */ Object remove(int i) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public Void remove(int i) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public boolean remove(Object obj) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public boolean removeAll(Collection collection) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public boolean retainAll(Collection collection) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public /* bridge */ /* synthetic */ Object set(int i, Object obj) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     public Void set(int i, Void r2) {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public Object[] toArray() {
 | |
|         return CollectionToArray.toArray(this);
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public <T> T[] toArray(T[] array) {
 | |
|         Intrinsics.checkNotNullParameter(array, "array");
 | |
|         return (T[]) CollectionToArray.toArray(this, array);
 | |
|     }
 | |
| 
 | |
|     public String toString() {
 | |
|         return "[]";
 | |
|     }
 | |
| 
 | |
|     private EmptyList() {
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public final /* bridge */ boolean contains(Object obj) {
 | |
|         if (obj instanceof Void) {
 | |
|             return contains((Void) obj);
 | |
|         }
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public final /* bridge */ int indexOf(Object obj) {
 | |
|         if (obj instanceof Void) {
 | |
|             return indexOf((Void) obj);
 | |
|         }
 | |
|         return -1;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public final /* bridge */ int lastIndexOf(Object obj) {
 | |
|         if (obj instanceof Void) {
 | |
|             return lastIndexOf((Void) obj);
 | |
|         }
 | |
|         return -1;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public final /* bridge */ int size() {
 | |
|         return getSize();
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public boolean equals(Object other) {
 | |
|         return (other instanceof List) && ((List) other).isEmpty();
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection
 | |
|     public boolean containsAll(Collection elements) {
 | |
|         Intrinsics.checkNotNullParameter(elements, "elements");
 | |
|         return elements.isEmpty();
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public Void get(int index) {
 | |
|         throw new IndexOutOfBoundsException("Empty list doesn't contain element at index " + index + '.');
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List, java.util.Collection, java.lang.Iterable
 | |
|     public Iterator iterator() {
 | |
|         return EmptyIterator.INSTANCE;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public ListIterator listIterator() {
 | |
|         return EmptyIterator.INSTANCE;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public ListIterator listIterator(int index) {
 | |
|         if (index != 0) {
 | |
|             throw new IndexOutOfBoundsException("Index: " + index);
 | |
|         }
 | |
|         return EmptyIterator.INSTANCE;
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.List
 | |
|     public List subList(int fromIndex, int toIndex) {
 | |
|         if (fromIndex == 0 && toIndex == 0) {
 | |
|             return this;
 | |
|         }
 | |
|         throw new IndexOutOfBoundsException("fromIndex: " + fromIndex + ", toIndex: " + toIndex);
 | |
|     }
 | |
| }
 |