Constructor. This byte array will NOT be copied. @param table The non-empty name of the table to use.
(final HBaseClient client, final byte[] table)
| 204 | * @param table The non-empty name of the table to use. |
| 205 | */ |
| 206 | Scanner(final HBaseClient client, final byte[] table) { |
| 207 | KeyValue.checkTable(table); |
| 208 | this.client = client; |
| 209 | this.table = table; |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * Returns boolean indicating if scanner is in reversed direction |
nothing calls this directly
no test coverage detected