Package | Description |
---|---|
com.google.common.collect |
This package contains generic collection interfaces and implementations, and
other utilities for working with collections.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
DenseImmutableTable<R,C,V>
A
RegularImmutableTable optimized for dense data. |
(package private) class |
SparseImmutableTable<R,C,V>
A
RegularImmutableTable optimized for sparse data. |
Modifier and Type | Method and Description |
---|---|
(package private) static <R,C,V> RegularImmutableTable<R,C,V> |
RegularImmutableTable.forCells(java.lang.Iterable<Table.Cell<R,C,V>> cells) |
(package private) static <R,C,V> RegularImmutableTable<R,C,V> |
RegularImmutableTable.forCells(java.util.List<Table.Cell<R,C,V>> cells,
java.util.Comparator<? super R> rowComparator,
java.util.Comparator<? super C> columnComparator) |
private static <R,C,V> RegularImmutableTable<R,C,V> |
RegularImmutableTable.forCellsInternal(java.lang.Iterable<Table.Cell<R,C,V>> cells,
java.util.Comparator<? super R> rowComparator,
java.util.Comparator<? super C> columnComparator)
A factory that chooses the most space-efficient representation of the
table.
|