}
RowResult rowResult_ = result_.getRowResult();
TRowResult result = new TRowResult();
result.row = rowResult_.getRow();
result.columns = new TreeMap<byte[], TCell>(Bytes.BYTES_COMPARATOR);
for (Map.Entry<byte[], Cell> entry : rowResult_.entrySet()){
Cell cell = entry.getValue();
result.columns.put(entry.getKey(),
new TCell(cell.getValue(), cell.getTimestamp()));
}