Class CellReference
- java.lang.Object
-
- com.palantir.atlasdb.keyvalue.api.CellReference
-
@Immutable public abstract class CellReference extends Object
-
-
Constructor Summary
Constructors Constructor Description CellReference()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Cell
cell()
int
goodHash()
Cell.hashCode()
implementation has a rather unfortunate case where it is always 0 if the row name and the column name match.static CellReference
of(TableReference tableRef, Cell cell)
abstract TableReference
tableRef()
-
-
-
Method Detail
-
tableRef
public abstract TableReference tableRef()
-
cell
public abstract Cell cell()
-
goodHash
public int goodHash()
Cell.hashCode()
implementation has a rather unfortunate case where it is always 0 if the row name and the column name match. We did not want to change it to keep backwards compatibility, but we need a uniform distribution here for all reasonable patterns.
-
of
public static CellReference of(TableReference tableRef, Cell cell)
-
-