Extracts the data points from a single column. While it's meant for use on a compacted column, you can pass any other type of column and it will be returned. If the column represents a data point, a single cell will be returned. If the column contains an annotation or other object, the result will b
(final KeyValue column)
| 214 | * @since 2.0 |
| 215 | */ |
| 216 | public static ArrayList<Cell> extractDataPoints(final KeyValue column) { |
| 217 | final ArrayList<KeyValue> row = new ArrayList<KeyValue>(1); |
| 218 | row.add(column); |
| 219 | return extractDataPoints(row, column.qualifier().length / 2); |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * Breaks down all the values in a row into individual {@link Cell}s sorted on |