Specifies one or more column qualifiers to scan. Note that specifying qualifiers without a family has no effect. You need to call #setFamily(byte[]) too. @param qualifiers The column qualifiers. These byte arrays will NOT be copied. @throws IllegalStateException if scann
(final byte[][] qualifiers)
| 391 | * @since 1.4 |
| 392 | */ |
| 393 | public void setQualifiers(final byte[][] qualifiers) { |
| 394 | checkScanningNotStarted(); |
| 395 | for (final byte[] qualifier : qualifiers) { |
| 396 | KeyValue.checkQualifier(qualifier); |
| 397 | } |
| 398 | this.qualifiers = new byte[][][] { qualifiers }; |
| 399 | } |
| 400 | |
| 401 | /** |
| 402 | * Specifies the filter to apply to this scanner. |