decompile with cfr

This commit is contained in:
Merith-TK 2022-08-09 23:01:55 -07:00
commit 7d26cb34a1
1987 changed files with 238867 additions and 0 deletions

View file

@ -0,0 +1,222 @@
/*
* Decompiled with CFR 0.152.
*/
package com.google.common.collect;
import com.google.common.annotations.GwtCompatible;
import com.google.common.base.Preconditions;
import com.google.common.collect.Iterators;
import com.google.common.collect.Maps;
import com.google.common.collect.Multimap;
import com.google.common.collect.Multimaps;
import com.google.common.collect.Multiset;
import com.google.common.collect.SetMultimap;
import com.google.common.collect.Sets;
import java.util.AbstractCollection;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import javax.annotation.Nullable;
@GwtCompatible
abstract class AbstractMultimap<K, V>
implements Multimap<K, V> {
private transient Collection<Map.Entry<K, V>> entries;
private transient Set<K> keySet;
private transient Multiset<K> keys;
private transient Collection<V> values;
private transient Map<K, Collection<V>> asMap;
AbstractMultimap() {
}
@Override
public boolean isEmpty() {
return this.size() == 0;
}
@Override
public boolean containsValue(@Nullable Object value) {
for (Collection<V> collection : this.asMap().values()) {
if (!collection.contains(value)) continue;
return true;
}
return false;
}
@Override
public boolean containsEntry(@Nullable Object key, @Nullable Object value) {
Collection<V> collection = this.asMap().get(key);
return collection != null && collection.contains(value);
}
@Override
public boolean remove(@Nullable Object key, @Nullable Object value) {
Collection<V> collection = this.asMap().get(key);
return collection != null && collection.remove(value);
}
@Override
public boolean put(@Nullable K key, @Nullable V value) {
return this.get(key).add(value);
}
@Override
public boolean putAll(@Nullable K key, Iterable<? extends V> values) {
Preconditions.checkNotNull(values);
if (values instanceof Collection) {
Collection valueCollection = (Collection)values;
return !valueCollection.isEmpty() && this.get(key).addAll(valueCollection);
}
Iterator<V> valueItr = values.iterator();
return valueItr.hasNext() && Iterators.addAll(this.get(key), valueItr);
}
@Override
public boolean putAll(Multimap<? extends K, ? extends V> multimap) {
boolean changed = false;
for (Map.Entry<K, V> entry : multimap.entries()) {
changed |= this.put(entry.getKey(), entry.getValue());
}
return changed;
}
@Override
public Collection<V> replaceValues(@Nullable K key, Iterable<? extends V> values) {
Preconditions.checkNotNull(values);
Collection result = this.removeAll(key);
this.putAll(key, values);
return result;
}
@Override
public Collection<Map.Entry<K, V>> entries() {
Collection<Map.Entry<K, V>> result = this.entries;
return result == null ? (this.entries = this.createEntries()) : result;
}
Collection<Map.Entry<K, V>> createEntries() {
if (this instanceof SetMultimap) {
return new EntrySet();
}
return new Entries();
}
abstract Iterator<Map.Entry<K, V>> entryIterator();
@Override
public Set<K> keySet() {
Set<K> result = this.keySet;
return result == null ? (this.keySet = this.createKeySet()) : result;
}
Set<K> createKeySet() {
return new Maps.KeySet<K, Collection<V>>(this.asMap());
}
@Override
public Multiset<K> keys() {
Multiset<K> result = this.keys;
return result == null ? (this.keys = this.createKeys()) : result;
}
Multiset<K> createKeys() {
return new Multimaps.Keys(this);
}
@Override
public Collection<V> values() {
Collection<V> result = this.values;
return result == null ? (this.values = this.createValues()) : result;
}
Collection<V> createValues() {
return new Values();
}
Iterator<V> valueIterator() {
return Maps.valueIterator(this.entries().iterator());
}
@Override
public Map<K, Collection<V>> asMap() {
Map<K, Collection<Collection<V>>> result = this.asMap;
return result == null ? (this.asMap = this.createAsMap()) : result;
}
abstract Map<K, Collection<V>> createAsMap();
@Override
public boolean equals(@Nullable Object object) {
return Multimaps.equalsImpl(this, object);
}
@Override
public int hashCode() {
return this.asMap().hashCode();
}
public String toString() {
return this.asMap().toString();
}
class Values
extends AbstractCollection<V> {
Values() {
}
@Override
public Iterator<V> iterator() {
return AbstractMultimap.this.valueIterator();
}
@Override
public int size() {
return AbstractMultimap.this.size();
}
@Override
public boolean contains(@Nullable Object o) {
return AbstractMultimap.this.containsValue(o);
}
@Override
public void clear() {
AbstractMultimap.this.clear();
}
}
private class EntrySet
extends Entries
implements Set<Map.Entry<K, V>> {
private EntrySet() {
}
@Override
public int hashCode() {
return Sets.hashCodeImpl(this);
}
@Override
public boolean equals(@Nullable Object obj) {
return Sets.equalsImpl(this, obj);
}
}
private class Entries
extends Multimaps.Entries<K, V> {
private Entries() {
}
@Override
Multimap<K, V> multimap() {
return AbstractMultimap.this;
}
@Override
public Iterator<Map.Entry<K, V>> iterator() {
return AbstractMultimap.this.entryIterator();
}
}
}