Hi, I'm learning Accumulo and am attempting to write a Java client that scans over an Accumulo table using a single row id and a range of column families. Going through the API, the closest thing I've found to this feature is the 'bound method:
scan.setRange(new Range(entity).bound(new Column(startTime.getBytes(), "0".getBytes(), "public".getBytes()), new Column(endTime.getBytes(), "1".getBytes(), "public".getBytes()))); Is there a simpler way to do this without a need to include the visibility or column qualifier? The API version I'm using is 1.5.1.
