Uses of Class
com.google.common.collect.RegularImmutableTable
Packages that use RegularImmutableTable
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of RegularImmutableTable in com.google.common.collect
Subclasses of RegularImmutableTable in com.google.common.collectModifier and TypeClassDescription(package private) final class
DenseImmutableTable<R,
C, V> ARegularImmutableTable
optimized for dense data.(package private) final class
SparseImmutableTable<R,
C, V> ARegularImmutableTable
optimized for sparse data.Methods in com.google.common.collect that return RegularImmutableTableModifier and TypeMethodDescription(package private) static <R,
C, V> RegularImmutableTable <R, C, V> RegularImmutableTable.forCells
(Iterable<Table.Cell<R, C, V>> cells) (package private) static <R,
C, V> RegularImmutableTable <R, C, V> RegularImmutableTable.forCells
(List<Table.Cell<R, C, V>> cells, Comparator<? super R> rowComparator, Comparator<? super C> columnComparator) private static <R,
C, V> RegularImmutableTable <R, C, V> RegularImmutableTable.forCellsInternal
(Iterable<Table.Cell<R, C, V>> cells, Comparator<? super R> rowComparator, Comparator<? super C> columnComparator) (package private) static <R,
C, V> RegularImmutableTable <R, C, V> RegularImmutableTable.forOrderedComponents
(ImmutableList<Table.Cell<R, C, V>> cellList, ImmutableSet<R> rowSpace, ImmutableSet<C> columnSpace) A factory that chooses the most space-efficient representation of the table.