Class CellReference

java.lang.Object
com.palantir.atlasdb.keyvalue.api.CellReference

@Immutable public abstract class CellReference extends Object
  • Constructor Details

    • CellReference

      public CellReference()
  • Method Details

    • 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)