Uses of Class
com.google.common.collect.RegularImmutableTable
Packages that use RegularImmutableTable
Package
Description
This package contains generic collection interfaces and implementations, and other utilities for
working with collections.
-
Uses of RegularImmutableTable in com.google.common.collect
Subclasses of RegularImmutableTable in com.google.common.collectModifier and TypeClassDescription(package private) final classDenseImmutableTable<R,C, V> ARegularImmutableTableoptimized for dense data.(package private) final classSparseImmutableTable<R,C, V> ARegularImmutableTableoptimized 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.