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

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

Introduction

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

The text is from its open source code.

Method

TreeBasedTablecreate()
Creates an empty TreeBasedTable that uses the natural orderings of both row and column keys.
TreeBasedTablecreate(Comparator rowComparator, Comparator columnComparator)
Creates an empty TreeBasedTable that is ordered by the specified comparators.
TreeBasedTablecreate(TreeBasedTable table)
Creates a TreeBasedTable with the same mappings and sort order as the specified TreeBasedTable .
SortedMaprow(R rowKey)

Because a TreeBasedTable has unique sorted values for a given row, this method returns a SortedMap , instead of the Map specified in the Table interface.

SortedSetrowKeySet()