59 lines
1.7 KiB
Java
59 lines
1.7 KiB
Java
package o;
|
|
|
|
import java.util.ListIterator;
|
|
import java.util.NoSuchElementException;
|
|
|
|
/* renamed from: o.gaC, reason: case insensitive filesystem */
|
|
/* loaded from: classes.dex */
|
|
public final class C14849gaC implements ListIterator, InterfaceC14932gcO {
|
|
public static final C14849gaC b = new C14849gaC();
|
|
|
|
@Override // java.util.ListIterator, java.util.Iterator
|
|
public final boolean hasNext() {
|
|
return false;
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final boolean hasPrevious() {
|
|
return false;
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final int nextIndex() {
|
|
return 0;
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final int previousIndex() {
|
|
return -1;
|
|
}
|
|
|
|
private C14849gaC() {
|
|
}
|
|
|
|
@Override // java.util.ListIterator, java.util.Iterator
|
|
public final /* synthetic */ Object next() {
|
|
throw new NoSuchElementException();
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final /* synthetic */ Object previous() {
|
|
throw new NoSuchElementException();
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final /* synthetic */ void set(Object obj) {
|
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
|
}
|
|
|
|
@Override // java.util.ListIterator, java.util.Iterator
|
|
public final void remove() {
|
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final /* synthetic */ void add(Object obj) {
|
|
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
|
|
}
|
|
}
|