Uses of Interface
com.google.common.collect.Table.Cell
-
Packages that use Table.Cell Package Description com.google.common.collect Collection interfaces and implementations, and other utilities for collections. -
-
Uses of Table.Cell in com.google.common.collect
Methods in com.google.common.collect that return Table.Cell 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>Tables. immutableCell(R rowKey, C columnKey, V value)
Returns an immutable cell with the specified row key, column key, and value.Methods in com.google.common.collect that return types with arguments of type Table.Cell Modifier and Type Method Description java.util.Set<Table.Cell<R,C,@Nullable V>>
ArrayTable. cellSet()
Returns an unmodifiable set of all row key / column key / value triplets.java.util.Set<Table.Cell<R,C,V>>
ForwardingTable. cellSet()
ImmutableSet<Table.Cell<R,C,V>>
ImmutableTable. cellSet()
java.util.Set<Table.Cell<R,C,V>>
Table. cellSet()
Returns a set of all row key / column key / value triplets.Methods in com.google.common.collect with parameters of type Table.Cell Modifier and Type Method Description ImmutableTable.Builder<R,C,V>
ImmutableTable.Builder. put(Table.Cell<? extends R,? extends C,? extends V> cell)
Adds the givencell
to the table, making it immutable if necessary.
-