| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ImmutableTable.Builder | |
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for working with collections. | 
| Uses of ImmutableTable.Builder in com.google.common.collect | 
|---|
| Methods in com.google.common.collect that return ImmutableTable.Builder | ||
|---|---|---|
| static
 | ImmutableTable.builder()Returns a new builder. | |
|  ImmutableTable.Builder<R,C,V> | ImmutableTable.Builder.orderColumnsBy(Comparator<? super C> columnComparator)Specifies the ordering of the generated table's columns. | |
|  ImmutableTable.Builder<R,C,V> | ImmutableTable.Builder.orderRowsBy(Comparator<? super R> rowComparator)Specifies the ordering of the generated table's rows. | |
|  ImmutableTable.Builder<R,C,V> | ImmutableTable.Builder.put(R rowKey,
       C columnKey,
       V value)Associates the ( rowKey,columnKey) pair withvaluein the built table. | |
|  ImmutableTable.Builder<R,C,V> | ImmutableTable.Builder.put(Table.Cell<? extends R,? extends C,? extends V> cell)Adds the given cellto the table, making it immutable if
 necessary. | |
|  ImmutableTable.Builder<R,C,V> | ImmutableTable.Builder.putAll(Table<? extends R,? extends C,? extends V> table)Associates all of the given table's keys and values in the built table. | |
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||