| clientFilter,
index);
if (value == null) {
return null;
}
final GeoWaveInputKey key = new GeoWaveInputKey(
new ByteArrayId(
rowId.getAdapterId()),
new ByteArrayId(
rowId.getDataId()));
key.setAccumuloKey(row.getKey());
return new GeoWaveInputFormatEntry(
key,
value);
}
|