Specifies from which row key to start scanning (inclusive). @param start_key The row key to start scanning from. If you don't invoke this method, scanning will begin from the first row key in the table. This byte array will NOT be copied. @throws IllegalStateException if scanning a
(final byte[] start_key)
| 260 | * @throws IllegalStateException if scanning already started. |
| 261 | */ |
| 262 | public void setStartKey(final byte[] start_key) { |
| 263 | KeyValue.checkKey(start_key); |
| 264 | checkScanningNotStarted(); |
| 265 | this.start_key = start_key; |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Specifies from which row key to start scanning (inclusive). |