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

/external/guava/guava/src/com/google/common/collect/
H A DArrayTable.java70 * access the same cell of an {@code ArrayTable} concurrently and one of the
81 public final class ArrayTable<R, C, V> implements Table<R, C, V>, Serializable { class in inherits:Table,Serializable
84 * Creates an empty {@code ArrayTable}.
92 public static <R, C, V> ArrayTable<R, C, V> create(
94 return new ArrayTable<R, C, V>(rowKeys, columnKeys);
105 * Creates an {@code ArrayTable} with the mappings in the provided table.
125 public static <R, C, V> ArrayTable<R, C, V> create(Table<R, C, V> table) {
126 return new ArrayTable<R, C, V>(table);
130 * Creates an {@code ArrayTable} with the same mappings, allowed keys, and
131 * iteration ordering as the provided {@code ArrayTable}
133 create( ArrayTable<R, C, V> table) argument
146 private ArrayTable(Iterable<? extends R> rowKeys, method in class:ArrayTable
176 private ArrayTable(Table<R, C, V> table) { method in class:ArrayTable
181 private ArrayTable(ArrayTable<R, C, V> table) { method in class:ArrayTable
[all...]

Completed in 111 milliseconds