The below KeyValue based APIs are removed from Result
KeyValue[] raw()
List<KeyValue> list()
List<KeyValue> getColumn(byte [] family, byte [] qualifier)
KeyValue getColumnLatest(byte [] family, byte [] qualifier)
KeyValue getColumnLatest(byte [] family, int foffset, int flength, byte [] qualifier, int qoffset, int qlength)
They are replaced with
Cell[] rawCells()
List<Cell> listCells()
List<Cell> getColumnCells(byte [] family, byte [] qualifier)
Cell getColumnLatestCell(byte [] family, byte [] qualifier)
Cell getColumnLatestCell(byte [] family, int foffset, int flength, byte [] qualifier, int qoffset, int qlength)
respectively
Also the constructors which were taking KeyValues also removed
Result(KeyValue [] cells)
Result(List<KeyValue> kvs)
The below KeyValue based APIs are removed from Result
KeyValue[] raw()
List<KeyValue> list()
List<KeyValue> getColumn(byte [] family, byte [] qualifier)
KeyValue getColumnLatest(byte [] family, byte [] qualifier)
KeyValue getColumnLatest(byte [] family, int foffset, int flength, byte [] qualifier, int qoffset, int qlength)
They are replaced with
Cell[] rawCells()
List<Cell> listCells()
List<Cell> getColumnCells(byte [] family, byte [] qualifier)
Cell getColumnLatestCell(byte [] family, byte [] qualifier)
Cell getColumnLatestCell(byte [] family, int foffset, int flength, byte [] qualifier, int qoffset, int qlength)
respectively
Also the constructors which were taking KeyValues also removed
Result(KeyValue [] cells)
Result(List<KeyValue> kvs)
Description
Remove KeyValue based APIs and keep only Cell based.
These are deprecated since 0.96