in modules/core/src/main/java/org/apache/fluo/recipes/core/export/ExportBucket.java [162:179]
public ExportEntry next() {
RowColumnValue rowColVal = rowIter.next();
Bytes row = rowColVal.getRow();
Bytes keyBytes = row.subSequence(bucketRow.length() + 1, row.length() - 8);
Bytes seqBytes = row.subSequence(row.length() - 8, row.length());
ExportEntry ee = new ExportEntry();
ee.key = keyBytes.toArray();
ee.seq = decodeSeq(seqBytes);
// TODO maybe leave as Bytes?
ee.value = rowColVal.getValue().toArray();
lastRow = row;
return ee;
}