discord-jadx/app/src/main/java/androidx/collection/ArrayMap.java

118 lines
3.4 KiB
Java

package androidx.collection;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
public class ArrayMap<K, V> extends SimpleArrayMap<K, V> implements Map<K, V> {
@Nullable
public MapCollections<K, V> mCollections;
/* renamed from: androidx.collection.ArrayMap$1 reason: invalid class name */
public class AnonymousClass1 extends MapCollections<K, V> {
public AnonymousClass1() {
}
@Override // androidx.collection.MapCollections
public void colClear() {
ArrayMap.this.clear();
}
@Override // androidx.collection.MapCollections
public Object colGetEntry(int i, int i2) {
return ArrayMap.this.mArray[(i << 1) + i2];
}
@Override // androidx.collection.MapCollections
public Map<K, V> colGetMap() {
return ArrayMap.this;
}
@Override // androidx.collection.MapCollections
public int colGetSize() {
return ArrayMap.this.mSize;
}
@Override // androidx.collection.MapCollections
public int colIndexOfKey(Object obj) {
return ArrayMap.this.indexOfKey(obj);
}
@Override // androidx.collection.MapCollections
public int colIndexOfValue(Object obj) {
return ArrayMap.this.indexOfValue(obj);
}
@Override // androidx.collection.MapCollections
public void colPut(K k, V v) {
ArrayMap.this.put(k, v);
}
@Override // androidx.collection.MapCollections
public void colRemoveAt(int i) {
ArrayMap.this.removeAt(i);
}
@Override // androidx.collection.MapCollections
public V colSetValue(int i, V v) {
return ArrayMap.this.setValueAt(i, v);
}
}
public ArrayMap() {
}
public ArrayMap(int i) {
super(i);
}
public ArrayMap(SimpleArrayMap simpleArrayMap) {
super(simpleArrayMap);
}
private MapCollections<K, V> getCollection() {
if (this.mCollections == null) {
this.mCollections = new AnonymousClass1();
}
return this.mCollections;
}
public boolean containsAll(@NonNull Collection<?> collection) {
return MapCollections.containsAllHelper(this, collection);
}
@Override // java.util.Map
public Set<Map.Entry<K, V>> entrySet() {
return getCollection().getEntrySet();
}
@Override // java.util.Map
public Set<K> keySet() {
return getCollection().getKeySet();
}
/* JADX DEBUG: Multi-variable search result rejected for r2v0, resolved type: androidx.collection.ArrayMap<K, V> */
/* JADX WARN: Multi-variable type inference failed */
@Override // java.util.Map
public void putAll(Map<? extends K, ? extends V> map) {
ensureCapacity(map.size() + this.mSize);
for (Map.Entry<? extends K, ? extends V> entry : map.entrySet()) {
put(entry.getKey(), entry.getValue());
}
}
public boolean removeAll(@NonNull Collection<?> collection) {
return MapCollections.removeAllHelper(this, collection);
}
public boolean retainAll(@NonNull Collection<?> collection) {
return MapCollections.retainAllHelper(this, collection);
}
@Override // java.util.Map
public Collection<V> values() {
return getCollection().getValues();
}
}