mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 17:42:33 -06:00
154 lines
6.7 KiB
Java
154 lines
6.7 KiB
Java
package com.google.common.collect;
|
|
|
|
import com.google.common.base.Preconditions;
|
|
import com.google.common.collect.Table;
|
|
import java.util.Collection;
|
|
import java.util.Collections;
|
|
import java.util.Comparator;
|
|
import java.util.LinkedHashSet;
|
|
import java.util.List;
|
|
import javax.annotation.CheckForNull;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public abstract class RegularImmutableTable<R, C, V> extends ImmutableTable<R, C, V> {
|
|
abstract Table.Cell<R, C, V> getCell(int i);
|
|
|
|
abstract V getValue(int i);
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
@Override // com.google.common.collect.ImmutableTable, com.google.common.collect.AbstractTable
|
|
public final ImmutableSet<Table.Cell<R, C, V>> createCellSet() {
|
|
return isEmpty() ? ImmutableSet.of() : new CellSet();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
/* loaded from: classes3.dex */
|
|
public final class CellSet extends IndexedImmutableSet<Table.Cell<R, C, V>> {
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
@Override // com.google.common.collect.ImmutableCollection
|
|
public boolean isPartialView() {
|
|
return false;
|
|
}
|
|
|
|
private CellSet() {
|
|
}
|
|
|
|
@Override // java.util.AbstractCollection, java.util.Collection, java.util.Set
|
|
public int size() {
|
|
return RegularImmutableTable.this.size();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
@Override // com.google.common.collect.IndexedImmutableSet
|
|
public Table.Cell<R, C, V> get(int i) {
|
|
return RegularImmutableTable.this.getCell(i);
|
|
}
|
|
|
|
@Override // com.google.common.collect.ImmutableCollection, java.util.AbstractCollection, java.util.Collection, java.util.Set
|
|
public boolean contains(@CheckForNull Object obj) {
|
|
if (!(obj instanceof Table.Cell)) {
|
|
return false;
|
|
}
|
|
Table.Cell cell = (Table.Cell) obj;
|
|
Object obj2 = RegularImmutableTable.this.get(cell.getRowKey(), cell.getColumnKey());
|
|
return obj2 != null && obj2.equals(cell.getValue());
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
@Override // com.google.common.collect.ImmutableTable, com.google.common.collect.AbstractTable
|
|
public final ImmutableCollection<V> createValues() {
|
|
return isEmpty() ? ImmutableList.of() : new Values();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
/* loaded from: classes3.dex */
|
|
public final class Values extends ImmutableList<V> {
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
@Override // com.google.common.collect.ImmutableCollection
|
|
public boolean isPartialView() {
|
|
return true;
|
|
}
|
|
|
|
private Values() {
|
|
}
|
|
|
|
@Override // java.util.AbstractCollection, java.util.Collection, java.util.List
|
|
public int size() {
|
|
return RegularImmutableTable.this.size();
|
|
}
|
|
|
|
@Override // java.util.List
|
|
public V get(int i) {
|
|
return (V) RegularImmutableTable.this.getValue(i);
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static <R, C, V> RegularImmutableTable<R, C, V> forCells(List<Table.Cell<R, C, V>> list, @CheckForNull final Comparator<? super R> comparator, @CheckForNull final Comparator<? super C> comparator2) {
|
|
Preconditions.checkNotNull(list);
|
|
if (comparator != null || comparator2 != null) {
|
|
Collections.sort(list, new Comparator() { // from class: com.google.common.collect.RegularImmutableTable$$ExternalSyntheticLambda0
|
|
@Override // java.util.Comparator
|
|
public final int compare(Object obj, Object obj2) {
|
|
return RegularImmutableTable.lambda$forCells$0(comparator, comparator2, (Table.Cell) obj, (Table.Cell) obj2);
|
|
}
|
|
});
|
|
}
|
|
return forCellsInternal(list, comparator, comparator2);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static /* synthetic */ int lambda$forCells$0(Comparator comparator, Comparator comparator2, Table.Cell cell, Table.Cell cell2) {
|
|
int compare = comparator == null ? 0 : comparator.compare(cell.getRowKey(), cell2.getRowKey());
|
|
if (compare != 0) {
|
|
return compare;
|
|
}
|
|
if (comparator2 == null) {
|
|
return 0;
|
|
}
|
|
return comparator2.compare(cell.getColumnKey(), cell2.getColumnKey());
|
|
}
|
|
|
|
static <R, C, V> RegularImmutableTable<R, C, V> forCells(Iterable<Table.Cell<R, C, V>> iterable) {
|
|
return forCellsInternal(iterable, null, null);
|
|
}
|
|
|
|
private static <R, C, V> RegularImmutableTable<R, C, V> forCellsInternal(Iterable<Table.Cell<R, C, V>> iterable, @CheckForNull Comparator<? super R> comparator, @CheckForNull Comparator<? super C> comparator2) {
|
|
ImmutableSet copyOf;
|
|
ImmutableSet copyOf2;
|
|
LinkedHashSet linkedHashSet = new LinkedHashSet();
|
|
LinkedHashSet linkedHashSet2 = new LinkedHashSet();
|
|
ImmutableList copyOf3 = ImmutableList.copyOf(iterable);
|
|
for (Table.Cell<R, C, V> cell : iterable) {
|
|
linkedHashSet.add(cell.getRowKey());
|
|
linkedHashSet2.add(cell.getColumnKey());
|
|
}
|
|
if (comparator == null) {
|
|
copyOf = ImmutableSet.copyOf((Collection) linkedHashSet);
|
|
} else {
|
|
copyOf = ImmutableSet.copyOf((Collection) ImmutableList.sortedCopyOf(comparator, linkedHashSet));
|
|
}
|
|
if (comparator2 == null) {
|
|
copyOf2 = ImmutableSet.copyOf((Collection) linkedHashSet2);
|
|
} else {
|
|
copyOf2 = ImmutableSet.copyOf((Collection) ImmutableList.sortedCopyOf(comparator2, linkedHashSet2));
|
|
}
|
|
return forOrderedComponents(copyOf3, copyOf, copyOf2);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static <R, C, V> RegularImmutableTable<R, C, V> forOrderedComponents(ImmutableList<Table.Cell<R, C, V>> immutableList, ImmutableSet<R> immutableSet, ImmutableSet<C> immutableSet2) {
|
|
if (immutableList.size() > (immutableSet.size() * immutableSet2.size()) / 2) {
|
|
return new DenseImmutableTable(immutableList, immutableSet, immutableSet2);
|
|
}
|
|
return new SparseImmutableTable(immutableList, immutableSet, immutableSet2);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public final void checkNoDuplicate(R r, C c, @CheckForNull V v, V v2) {
|
|
Preconditions.checkArgument(v == null, "Duplicate key: (row=%s, column=%s), values: [%s, %s].", r, c, v2, v);
|
|
}
|
|
}
|