You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

188 lines
5.5 KiB

package p009c1;
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 p039m1.C1467d;
import p039m1.C1470g;
/* renamed from: c1.q */
/* loaded from: classes.dex */
public final class C0512q implements List, Serializable, RandomAccess {
/* renamed from: d */
public static final C0512q f1932d = new C0512q();
/* renamed from: a */
public boolean m3595a(Void r2) {
C1470g.m1292e(r2, "element");
return false;
}
@Override // java.util.List
public /* bridge */ /* synthetic */ void add(int i, Object obj) {
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");
}
@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
/* renamed from: b */
public Void get(int i) {
throw new IndexOutOfBoundsException("Empty list doesn't contain element at index " + i + '.');
}
/* renamed from: c */
public int m3593c() {
return 0;
}
@Override // java.util.List, java.util.Collection
public void clear() {
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
}
@Override // java.util.List, java.util.Collection
public final /* bridge */ boolean contains(Object obj) {
if (obj instanceof Void) {
return m3595a((Void) obj);
}
return false;
}
@Override // java.util.List, java.util.Collection
public boolean containsAll(Collection collection) {
C1470g.m1292e(collection, "elements");
return collection.isEmpty();
}
/* renamed from: d */
public int m3592d(Void r2) {
C1470g.m1292e(r2, "element");
return -1;
}
/* renamed from: e */
public int m3591e(Void r2) {
C1470g.m1292e(r2, "element");
return -1;
}
@Override // java.util.List, java.util.Collection
public boolean equals(Object obj) {
return (obj instanceof List) && ((List) obj).isEmpty();
}
@Override // java.util.List, java.util.Collection
public int hashCode() {
return 1;
}
@Override // java.util.List
public final /* bridge */ int indexOf(Object obj) {
if (obj instanceof Void) {
return m3592d((Void) obj);
}
return -1;
}
@Override // java.util.List, java.util.Collection
public boolean isEmpty() {
return true;
}
@Override // java.util.List, java.util.Collection, java.lang.Iterable
public Iterator iterator() {
return C0511p.f1931d;
}
@Override // java.util.List
public final /* bridge */ int lastIndexOf(Object obj) {
if (obj instanceof Void) {
return m3591e((Void) obj);
}
return -1;
}
@Override // java.util.List
public ListIterator listIterator() {
return C0511p.f1931d;
}
@Override // java.util.List
public ListIterator listIterator(int i) {
if (i == 0) {
return C0511p.f1931d;
}
throw new IndexOutOfBoundsException("Index: " + i);
}
@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, 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");
}
@Override // java.util.List, java.util.Collection
public final /* bridge */ int size() {
return m3593c();
}
@Override // java.util.List
public List subList(int i, int i2) {
if (i == 0 && i2 == 0) {
return this;
}
throw new IndexOutOfBoundsException("fromIndex: " + i + ", toIndex: " + i2);
}
@Override // java.util.List, java.util.Collection
public Object[] toArray() {
return C1467d.m1298a(this);
}
@Override // java.util.List, java.util.Collection
public <T> T[] toArray(T[] tArr) {
C1470g.m1292e(tArr, "array");
return (T[]) C1467d.m1297b(this, tArr);
}
public String toString() {
return "[]";
}
}