179 lines
5.5 KiB
Java
179 lines
5.5 KiB
Java
|
package o;
|
||
|
|
||
|
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 okhttp3.HttpUrl;
|
||
|
|
||
|
/* renamed from: o.gaI, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class C14851gaI implements List, Serializable, RandomAccess, InterfaceC14932gcO {
|
||
|
public static final C14851gaI c = new C14851gaI();
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final int hashCode() {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final boolean isEmpty() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final /* bridge */ int size() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
private C14851gaI() {
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final boolean contains(Object obj) {
|
||
|
if (!(obj instanceof Void)) {
|
||
|
return false;
|
||
|
}
|
||
|
C14957gcv.e((Void) obj, "");
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final int indexOf(Object obj) {
|
||
|
if (!(obj instanceof Void)) {
|
||
|
return -1;
|
||
|
}
|
||
|
C14957gcv.e((Void) obj, "");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final int lastIndexOf(Object obj) {
|
||
|
if (!(obj instanceof Void)) {
|
||
|
return -1;
|
||
|
}
|
||
|
C14957gcv.e((Void) obj, "");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final boolean equals(Object obj) {
|
||
|
return (obj instanceof List) && ((List) obj).isEmpty();
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final boolean containsAll(Collection collection) {
|
||
|
C14957gcv.e(collection, "");
|
||
|
return collection.isEmpty();
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection, java.lang.Iterable
|
||
|
public final Iterator iterator() {
|
||
|
return C14849gaC.b;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final ListIterator listIterator() {
|
||
|
return C14849gaC.b;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final ListIterator listIterator(int i) {
|
||
|
if (i != 0) {
|
||
|
throw new IndexOutOfBoundsException("Index: ".concat(String.valueOf(i)));
|
||
|
}
|
||
|
return C14849gaC.b;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final List subList(int i, int i2) {
|
||
|
if (i == 0 && i2 == 0) {
|
||
|
return this;
|
||
|
}
|
||
|
StringBuilder sb = new StringBuilder("fromIndex: ");
|
||
|
sb.append(i);
|
||
|
sb.append(", toIndex: ");
|
||
|
sb.append(i2);
|
||
|
throw new IndexOutOfBoundsException(sb.toString());
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final /* synthetic */ Object get(int i) {
|
||
|
StringBuilder sb = new StringBuilder("Empty list doesn't contain element at index ");
|
||
|
sb.append(i);
|
||
|
sb.append('.');
|
||
|
throw new IndexOutOfBoundsException(sb.toString());
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
return HttpUrl.PATH_SEGMENT_ENCODE_SET_URI;
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final <T> T[] toArray(T[] tArr) {
|
||
|
C14957gcv.e(tArr, "");
|
||
|
return (T[]) C14952gcq.d(this, tArr);
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final Object[] toArray() {
|
||
|
return C14952gcq.c(this);
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final /* synthetic */ Object set(int i, Object obj) {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final boolean retainAll(Collection collection) {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final boolean removeAll(Collection collection) {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final boolean remove(Object obj) {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final /* synthetic */ Object remove(int i) {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final void clear() {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List, java.util.Collection
|
||
|
public final boolean addAll(Collection collection) {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final 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 final /* synthetic */ boolean add(Object obj) {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
@Override // java.util.List
|
||
|
public final /* synthetic */ void add(int i, Object obj) {
|
||
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
||
|
}
|
||
|
|
||
|
private final Object readResolve() {
|
||
|
return c;
|
||
|
}
|
||
|
}
|