Interface ColumnScanner
-
- All Superinterfaces:
Iterable<ColumnValue>
public interface ColumnScanner extends Iterable<ColumnValue>
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Bytes
getRow()
String
getsRow()
default Stream<ColumnValue>
stream()
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
getRow
Bytes getRow()
- Returns:
- the row for all column values
- Since:
- 1.0.0
-
getsRow
String getsRow()
- Returns:
- the row for all column values decoded as UTF-8
- Since:
- 1.0.0
-
stream
default Stream<ColumnValue> stream()
- Since:
- 1.2.0
-
-