Uses of Class
com.google.common.collect.TreeBasedTable

Packages that use TreeBasedTable
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of TreeBasedTable in com.google.common.collect
 

Methods in com.google.common.collect that return TreeBasedTable
static
<R extends Comparable,C extends Comparable,V>
TreeBasedTable<R,C,V>
TreeBasedTable.create()
          Creates an empty TreeBasedTable that uses the natural orderings of both row and column keys.
static
<R,C,V> TreeBasedTable<R,C,V>
TreeBasedTable.create(Comparator<? super R> rowComparator, Comparator<? super C> columnComparator)
          Creates an empty TreeBasedTable that is ordered by the specified comparators.
static
<R,C,V> TreeBasedTable<R,C,V>
TreeBasedTable.create(TreeBasedTable<R,C,? extends V> table)
          Creates a TreeBasedTable with the same mappings and sort order as the specified TreeBasedTable.
 

Methods in com.google.common.collect with parameters of type TreeBasedTable
static
<R,C,V> TreeBasedTable<R,C,V>
TreeBasedTable.create(TreeBasedTable<R,C,? extends V> table)
          Creates a TreeBasedTable with the same mappings and sort order as the specified TreeBasedTable.
 



Copyright © 2010-2012. All Rights Reserved.