Uses of Class
com.google.common.collect.TreeBasedTable
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of TreeBasedTable in com.google.common.collect
Modifier and TypeMethodDescriptionstatic <R extends Comparable,
C extends Comparable, V>
TreeBasedTable<R, C, V> TreeBasedTable.create()
Creates an emptyTreeBasedTable
that uses the natural orderings of both row and column keys.static <R,
C, V> TreeBasedTable <R, C, V> TreeBasedTable.create
(TreeBasedTable<R, C, ? extends V> table) Creates aTreeBasedTable
with the same mappings and sort order as the specifiedTreeBasedTable
.static <R,
C, V> TreeBasedTable <R, C, V> TreeBasedTable.create
(Comparator<? super R> rowComparator, Comparator<? super C> columnComparator) Creates an emptyTreeBasedTable
that is ordered by the specified comparators.Modifier and TypeMethodDescriptionstatic <R,
C, V> TreeBasedTable <R, C, V> TreeBasedTable.create
(TreeBasedTable<R, C, ? extends V> table) Creates aTreeBasedTable
with the same mappings and sort order as the specifiedTreeBasedTable
.