Searched refs:getRowKey (Results 1 - 9 of 9) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DImmutableTable.java86 return ImmutableTable.<R, C, V>of(onlyCell.getRowKey(),
97 cellSetBuilder.add(cellOf((R) cell.getRowKey(),
194 checkNotNull(cell.getRowKey());
201 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
H A DSingletonImmutableTable.java46 this(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
126 return Objects.equal(this.singleRowKey, thatCell.getRowKey()) &&
H A DTable.java267 R getRowKey(); method in interface:Table.Cell
290 * Objects#hashCode}{@code (e.getRowKey(), e.getColumnKey(), e.getValue())}.
H A DTables.java81 public R getRowKey() { method in class:Tables.ImmutableCell
106 return Objects.equal(getRowKey(), other.getRowKey())
114 return Objects.hashCode(getRowKey(), getColumnKey(), getValue());
118 return "(" + getRowKey() + "," + getColumnKey() + ")=" + getValue();
265 cell.getColumnKey(), cell.getRowKey(), cell.getValue());
307 cell.getColumnKey(), cell.getRowKey(), cell.getValue()));
316 cell.getColumnKey(), cell.getRowKey(), cell.getValue()));
475 cell.getRowKey(), cell.getColumnKey(),
496 cell.getValue(), get(cell.getRowKey(), cel
[all...]
H A DRegularImmutableTable.java106 : rowComparator.compare(cell1.getRowKey(), cell2.getRowKey());
138 rowSpaceBuilder.add(cell.getRowKey());
209 R rowKey = cell.getRowKey();
302 R rowKey = cell.getRowKey();
H A DArrayTable.java387 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
480 public R getRowKey() {
503 Integer rowIndex = rowKeyToIndex.get(cell.getRowKey());
H A DStandardTable.java180 put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
291 cell.getRowKey(), cell.getColumnKey(), cell.getValue());
300 cell.getRowKey(), cell.getColumnKey(), cell.getValue());
/external/guava/guava-tests/test/com/google/common/collect/
H A DTableCollectionTest.java440 table.put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
499 table.put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
520 table.put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
542 table.put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
681 table.put(cell.getRowKey(), cell.getColumnKey(), cell.getValue());
H A DImmutableTableTest.java99 @Override public Character getRowKey() {

Completed in 137 milliseconds