Uses of Class
com.google.common.collect.ArrayTable
-
Packages that use ArrayTable Package Description com.google.common.collect Collection interfaces and implementations, and other utilities for collections. -
-
Uses of ArrayTable in com.google.common.collect
Methods in com.google.common.collect that return ArrayTable Modifier and Type Method Description static <R,C,V>
ArrayTable<R,C,V>ArrayTable. create(Table<R,C,? extends @Nullable V> table)
Creates anArrayTable
with the mappings in the provided table.static <R,C,V>
ArrayTable<R,C,V>ArrayTable. create(java.lang.Iterable<? extends R> rowKeys, java.lang.Iterable<? extends C> columnKeys)
Creates anArrayTable
filled withnull
.
-