Searched defs:HashBasedTable (Results 1 - 1 of 1) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DHashBasedTable.java54 public class HashBasedTable<R, C, V> extends StandardTable<R, C, V> { class in inherits:StandardTable
69 * Creates an empty {@code HashBasedTable}.
71 public static <R, C, V> HashBasedTable<R, C, V> create() {
72 return new HashBasedTable<R, C, V>(
77 * Creates an empty {@code HashBasedTable} with the specified map sizes.
85 public static <R, C, V> HashBasedTable<R, C, V> create(
90 return new HashBasedTable<R, C, V>(
95 * Creates a {@code HashBasedTable} with the same mappings as the specified
102 public static <R, C, V> HashBasedTable<R, C, V> create(
104 HashBasedTable<
109 HashBasedTable(Map<R, Map<C, V>> backingMap, Factory<C, V> factory) { method in class:HashBasedTable
[all...]

Completed in 66 milliseconds