Class Tables
- java.lang.Object
-
- com.google.common.collect.Tables
-
@GwtCompatible public final class Tables extends java.lang.Object
Provides static methods that involve aTable
.See the Guava User Guide article on
Tables
.- Since:
- 7.0
- Author:
- Jared Levy, Louis Wasserman
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
Table.Cell<R,C,V>immutableCell(R rowKey, C columnKey, V value)
Returns an immutable cell with the specified row key, column key, and value.static <R,C,V>
Table<R,C,V>newCustomTable(java.util.Map<R,java.util.Map<C,V>> backingMap, Supplier<? extends java.util.Map<C,V>> factory)
Creates a table that uses the specified backing map and factory.static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
Table<R,C,V>synchronizedTable(Table<R,C,V> table)
Returns a synchronized (thread-safe) table backed by the specified table.static <T extends @Nullable java.lang.Object,R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object,I extends Table<R,C,V>>
java.util.stream.Collector<T,?,I>toTable(java.util.function.Function<? super T,? extends R> rowFunction, java.util.function.Function<? super T,? extends C> columnFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.BinaryOperator<V> mergeFunction, java.util.function.Supplier<I> tableSupplier)
Returns aCollector
that accumulates elements into aTable
created using the specified supplier, whose cells are generated by applying the provided mapping functions to the input elements.static <T extends @Nullable java.lang.Object,R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object,I extends Table<R,C,V>>
java.util.stream.Collector<T,?,I>toTable(java.util.function.Function<? super T,? extends R> rowFunction, java.util.function.Function<? super T,? extends C> columnFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.Supplier<I> tableSupplier)
Returns aCollector
that accumulates elements into aTable
created using the specified supplier, whose cells are generated by applying the provided mapping functions to the input elements.static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object>
Table<R,C,V2>transformValues(Table<R,C,V1> fromTable, Function<? super V1,V2> function)
Returns a view of a table where each value is transformed by a function.static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
Table<C,R,V>transpose(Table<R,C,V> table)
Creates a transposed view of a given table that flips its row and column keys.static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
RowSortedTable<R,C,V>unmodifiableRowSortedTable(RowSortedTable<R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified row-sorted table.static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object>
Table<R,C,V>unmodifiableTable(Table<? extends R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified table.
-
-
-
Method Detail
-
toTable
public static <T extends @Nullable java.lang.Object,R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object,I extends Table<R,C,V>> java.util.stream.Collector<T,?,I> toTable(java.util.function.Function<? super T,? extends R> rowFunction, java.util.function.Function<? super T,? extends C> columnFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.Supplier<I> tableSupplier)
Returns aCollector
that accumulates elements into aTable
created using the specified supplier, whose cells are generated by applying the provided mapping functions to the input elements. Cells are inserted into the generatedTable
in encounter order.If multiple input elements map to the same row and column, an
IllegalStateException
is thrown when the collection operation is performed.To collect to an
ImmutableTable
, useImmutableTable.toImmutableTable(java.util.function.Function<? super T, ? extends R>, java.util.function.Function<? super T, ? extends C>, java.util.function.Function<? super T, ? extends V>)
.- Since:
- 21.0
-
toTable
public static <T extends @Nullable java.lang.Object,R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object,I extends Table<R,C,V>> java.util.stream.Collector<T,?,I> toTable(java.util.function.Function<? super T,? extends R> rowFunction, java.util.function.Function<? super T,? extends C> columnFunction, java.util.function.Function<? super T,? extends V> valueFunction, java.util.function.BinaryOperator<V> mergeFunction, java.util.function.Supplier<I> tableSupplier)
Returns aCollector
that accumulates elements into aTable
created using the specified supplier, whose cells are generated by applying the provided mapping functions to the input elements. Cells are inserted into the generatedTable
in encounter order.If multiple input elements map to the same row and column, the specified merging function is used to combine the values. Like
Collectors.toMap(java.util.function.Function, java.util.function.Function, BinaryOperator, java.util.function.Supplier)
, this Collector throws aNullPointerException
on null values returned fromvalueFunction
, and treats nulls returned frommergeFunction
as removals of that row/column pair.- Since:
- 21.0
-
immutableCell
public static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object> Table.Cell<R,C,V> immutableCell(R rowKey, C columnKey, V value)
Returns an immutable cell with the specified row key, column key, and value.The returned cell is serializable.
- Parameters:
rowKey
- the row key to be associated with the returned cellcolumnKey
- the column key to be associated with the returned cellvalue
- the value to be associated with the returned cell
-
transpose
public static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object> Table<C,R,V> transpose(Table<R,C,V> table)
Creates a transposed view of a given table that flips its row and column keys. In other words, callingget(columnKey, rowKey)
on the generated table always returns the same value as callingget(rowKey, columnKey)
on the original table. Updating the original table changes the contents of the transposed table and vice versa.The returned table supports update operations as long as the input table supports the analogous operation with swapped rows and columns. For example, in a
HashBasedTable
instance,rowKeySet().iterator()
supportsremove()
butcolumnKeySet().iterator()
doesn't. With a transposedHashBasedTable
, it's the other way around.
-
newCustomTable
public static <R,C,V> Table<R,C,V> newCustomTable(java.util.Map<R,java.util.Map<C,V>> backingMap, Supplier<? extends java.util.Map<C,V>> factory)
Creates a table that uses the specified backing map and factory. It can generate a table based on arbitraryMap
classes.The
factory
-generated andbackingMap
classes determine the table iteration order. However, the table'srow()
method returns instances of a different class thanfactory.get()
does.Call this method only when the simpler factory methods in classes like
HashBasedTable
andTreeBasedTable
won't suffice.The views returned by the
Table
methodsTable.column(C)
,Table.columnKeySet()
, andTable.columnMap()
have iterators that don't supportremove()
. Otherwise, all optional operations are supported. Null row keys, columns keys, and values are not supported.Lookups by row key are often faster than lookups by column key, because the data is stored in a
Map<R, Map<C, V>>
. A method call likecolumn(columnKey).get(rowKey)
still runs quickly, since the row key is provided. However,column(columnKey).size()
takes longer, since an iteration across all row keys occurs.Note that this implementation is not synchronized. If multiple threads access this table concurrently and one of the threads modifies the table, it must be synchronized externally.
The table is serializable if
backingMap
,factory
, the maps generated byfactory
, and the table contents are all serializable.Note: the table assumes complete ownership over of
backingMap
and the maps returned byfactory
. Those objects should not be manually updated and they should not use soft, weak, or phantom references.- Parameters:
backingMap
- place to store the mapping from each row key to its corresponding column key / value mapfactory
- supplier of new, empty maps that will each hold all column key / value mappings for a given row key- Throws:
java.lang.IllegalArgumentException
- ifbackingMap
is not empty- Since:
- 10.0
-
transformValues
public static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object> Table<R,C,V2> transformValues(Table<R,C,V1> fromTable, Function<? super V1,V2> function)
Returns a view of a table where each value is transformed by a function. All other properties of the table, such as iteration order, are left intact.Changes in the underlying table are reflected in this view. Conversely, this view supports removal operations, and these are reflected in the underlying table.
It's acceptable for the underlying table to contain null keys, and even null values provided that the function is capable of accepting null input. The transformed table might contain null values, if the function sometimes gives a null result.
The returned table is not thread-safe or serializable, even if the underlying table is.
The function is applied lazily, invoked when needed. This is necessary for the returned table to be a view, but it means that the function will be applied many times for bulk operations like
Table.containsValue(java.lang.Object)
andTable.toString()
. For this to perform well,function
should be fast. To avoid lazy evaluation when the returned table doesn't need to be a view, copy the returned table into a new table of your choosing.- Since:
- 10.0
-
unmodifiableTable
public static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object> Table<R,C,V> unmodifiableTable(Table<? extends R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified table. This method allows modules to provide users with "read-only" access to internal tables. Query operations on the returned table "read through" to the specified table, and attempts to modify the returned table, whether direct or via its collection views, result in anUnsupportedOperationException
.The returned table will be serializable if the specified table is serializable.
Consider using an
ImmutableTable
, which is guaranteed never to change.- Since:
- 11.0
-
unmodifiableRowSortedTable
public static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object> RowSortedTable<R,C,V> unmodifiableRowSortedTable(RowSortedTable<R,? extends C,? extends V> table)
Returns an unmodifiable view of the specified row-sorted table. This method allows modules to provide users with "read-only" access to internal tables. Query operations on the returned table "read through" to the specified table, and attempts to modify the returned table, whether direct or via its collection views, result in anUnsupportedOperationException
.The returned table will be serializable if the specified table is serializable.
- Parameters:
table
- the row-sorted table for which an unmodifiable view is to be returned- Returns:
- an unmodifiable view of the specified table
- Since:
- 11.0
-
synchronizedTable
public static <R extends @Nullable java.lang.Object,C extends @Nullable java.lang.Object,V extends @Nullable java.lang.Object> Table<R,C,V> synchronizedTable(Table<R,C,V> table)
Returns a synchronized (thread-safe) table backed by the specified table. In order to guarantee serial access, it is critical that all access to the backing table is accomplished through the returned table.It is imperative that the user manually synchronize on the returned table when accessing any of its collection views:
Table<R, C, V> table = Tables.synchronizedTable(HashBasedTable.<R, C, V>create()); ... Map<C, V> row = table.row(rowKey); // Needn't be in synchronized block ... synchronized (table) { // Synchronizing on table, not row! Iterator<Entry<C, V>> i = row.entrySet().iterator(); // Must be in synchronized block while (i.hasNext()) { foo(i.next()); } }
Failure to follow this advice may result in non-deterministic behavior.
The returned table will be serializable if the specified table is serializable.
- Parameters:
table
- the table to be wrapped in a synchronized view- Returns:
- a synchronized view of the specified table
- Since:
- 22.0
-
-