Uses of Interface
com.google.common.collect.RowSortedTable
-
Packages that use RowSortedTable Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections.com.google.common.testing This package contains testing utilities. -
-
Uses of RowSortedTable in com.google.common.collect
Classes in com.google.common.collect that implement RowSortedTable Modifier and Type Class Description (package private) class
StandardRowSortedTable<R,C,V>
Implementation ofTable
whose iteration ordering across row keys is sorted by their natural ordering or by a supplied comparator.(package private) static class
Tables.UnmodifiableRowSortedMap<R,C,V>
class
TreeBasedTable<R,C,V>
Implementation ofTable
whose row keys and column keys are ordered by their natural ordering or by supplied comparators.Methods in com.google.common.collect that return RowSortedTable Modifier and Type Method Description protected RowSortedTable<R,C,V>
Tables.UnmodifiableRowSortedMap. delegate()
static <R,C,V>
RowSortedTable<R,C,V>Tables. unmodifiableRowSortedTable(RowSortedTable<R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified row-sorted table.Methods in com.google.common.collect with parameters of type RowSortedTable Modifier and Type Method Description static <R,C,V>
RowSortedTable<R,C,V>Tables. unmodifiableRowSortedTable(RowSortedTable<R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified row-sorted table.Constructors in com.google.common.collect with parameters of type RowSortedTable Constructor Description UnmodifiableRowSortedMap(RowSortedTable<R,? extends C,? extends V> delegate)
-
Uses of RowSortedTable in com.google.common.testing
Methods in com.google.common.testing that return RowSortedTable Modifier and Type Method Description private static <R extends java.lang.Comparable,C extends java.lang.Comparable,V>
RowSortedTable<R,C,V>FreshValueGenerator. generateRowSortedTable(R row, C column, V value)
-