Uses of Class
com.google.common.collect.ImmutableTable.Builder
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of ImmutableTable.Builder in com.google.common.collect
Modifier and TypeMethodDescriptionstatic <R,
C, V> ImmutableTable.Builder <R, C, V> ImmutableTable.builder()
Returns a new builder.ImmutableTable.Builder.orderColumnsBy
(Comparator<? super C> columnComparator) Specifies the ordering of the generated table's columns.ImmutableTable.Builder.orderRowsBy
(Comparator<? super R> rowComparator) Specifies the ordering of the generated table's rows.ImmutableTable.Builder.put
(Table.Cell<? extends R, ? extends C, ? extends V> cell) Adds the givencell
to the table, making it immutable if necessary.Associates the (rowKey
,columnKey
) pair withvalue
in the built table.Associates all of the given table's keys and values in the built table.