Uses of Class
com.google.common.collect.TreeBasedTable
-
Packages that use TreeBasedTable Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. -
-
Uses of TreeBasedTable in com.google.common.collect
Methods in com.google.common.collect that return TreeBasedTable Modifier and Type Method Description static <R extends java.lang.Comparable,C extends java.lang.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(java.util.Comparator<? super R> rowComparator, java.util.Comparator<? super C> columnComparator)
Creates an emptyTreeBasedTable
that is ordered by the specified comparators.Methods in com.google.common.collect with parameters of type TreeBasedTable Modifier and Type Method Description 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
.
-