Uses of Class
com.google.common.collect.ImmutableTable.Builder
Packages that use ImmutableTable.Builder
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of ImmutableTable.Builder in com.google.common.collect
Methods in com.google.common.collect that return ImmutableTable.BuilderModifier and TypeMethodDescriptionstatic <R,C, V> ImmutableTable.Builder <R, C, V> ImmutableTable.builder()Returns a new builder.(package private) ImmutableTable.Builder<R, C, V> ImmutableTable.Builder.combine(ImmutableTable.Builder<R, C, V> other) 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 givencellto the table, making it immutable if necessary.Associates the (rowKey,columnKey) pair withvaluein the built table.Associates all of the given table's keys and values in the built table.Methods in com.google.common.collect with parameters of type ImmutableTable.BuilderModifier and TypeMethodDescription(package private) ImmutableTable.Builder<R, C, V> ImmutableTable.Builder.combine(ImmutableTable.Builder<R, C, V> other)