Java com.google.common.collect ArrayTable fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect ArrayTable fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect ArrayTable.

The text is from its open source code.

Method

Vat(int rowIndex, int columnIndex)
Returns the value corresponding to the specified row and column indices.
ImmutableListcolumnKeyList()
Returns, as an immutable list, the column keys provided when the table was constructed, including those that are mapped to null values only.
ImmutableSetcolumnKeySet()
Returns an immutable set of the valid column keys, including those that are associated with null values only.
ArrayTablecreate(Iterable rowKeys, Iterable columnKeys)
Creates an empty ArrayTable .
ArrayTablecreate(Table table)
Creates an ArrayTable with the mappings in the provided table.
Vget(@Nullable Object rowKey, @Nullable Object columnKey)
Vput(R rowKey, C columnKey, @Nullable V value)
ImmutableListrowKeyList()
Returns, as an immutable list, the row keys provided when the table was constructed, including those that are mapped to null values only.
ImmutableSetrowKeySet()
Returns an immutable set of the valid row keys, including those that are associated with null values only.
V[][]toArray(Class valueClass)
Returns a two-dimensional array with the table contents.