package com.google.common.collect; import java.util.Iterator; /* JADX INFO: Access modifiers changed from: package-private */ /* loaded from: classes2.dex */ public abstract class IndexedImmutableSet extends ImmutableSet { abstract E get(int i); @Override // com.google.common.collect.ImmutableSet, com.google.common.collect.ImmutableCollection, java.util.AbstractCollection, java.util.Collection, java.lang.Iterable, java.util.Set, java.util.NavigableSet, com.google.common.collect.SortedIterable public /* bridge */ /* synthetic */ Iterator iterator() { return iterator(); } @Override // com.google.common.collect.ImmutableSet, com.google.common.collect.ImmutableCollection, java.util.AbstractCollection, java.util.Collection, java.lang.Iterable, java.util.Set, java.util.NavigableSet, com.google.common.collect.SortedIterable public UnmodifiableIterator iterator() { return asList().iterator(); } /* JADX INFO: Access modifiers changed from: package-private */ @Override // com.google.common.collect.ImmutableCollection public int copyIntoArray(Object[] objArr, int i) { return asList().copyIntoArray(objArr, i); } /* JADX INFO: Access modifiers changed from: package-private */ @Override // com.google.common.collect.ImmutableSet public ImmutableList createAsList() { return new ImmutableList(this) { // from class: com.google.common.collect.IndexedImmutableSet.1 final IndexedImmutableSet this$0; { this.this$0 = this; } @Override // java.util.List public E get(int i) { return (E) this.this$0.get(i); } /* JADX INFO: Access modifiers changed from: package-private */ @Override // com.google.common.collect.ImmutableCollection public boolean isPartialView() { return this.this$0.isPartialView(); } @Override // java.util.AbstractCollection, java.util.Collection, java.util.List public int size() { return this.this$0.size(); } }; } }