@TOJSON
public RestCell[] getCells() {
RestCell[] restCells = new RestCell[this.cells.size()];
int i = 0;
for (Map.Entry<byte[], Cell> entry : this.cells.entrySet()) {
restCells[i] = new RestCell(entry.getKey(), entry.getValue());
i++;
}
return restCells;
}