in modules/core/src/main/java/org/apache/fluo/recipes/core/transaction/LogEntry.java [45:54]
private LogEntry(Operation op, Bytes row, Column col, Bytes value) {
Objects.requireNonNull(op);
Objects.requireNonNull(row);
Objects.requireNonNull(col);
Objects.requireNonNull(value);
this.op = op;
this.row = row;
this.col = col;
this.value = value;
}