MCPcopy Index your code
hub / github.com/OpenTSDB/asynchbase / setQualifiers

Method setQualifiers

src/Scanner.java:393–399  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

scanWithQualifiersMethod · 0.95

Calls 2

checkQualifierMethod · 0.95

Tested by 1

scanWithQualifiersMethod · 0.76