How do I get all the columns in a row in HashBasedTable ? I initialized it like this:
HashBasedTable
Table<String, String, Integer> table = HashBasedTable.create();
I want to sum all the values ββassociated with each row.
If you call table.row(r) you get a map from columns to values, which you can call entrySet () or values ββ(), on.
table.row(r)