MCPcopy Create free account
hub / github.com/OpenTSDB/asynchbase / qualifier

Method qualifier

src/GetRequest.java:250–257  ·  view source on GitHub ↗

Specifies a particular column qualifier to get. @param qualifier The column qualifier. This byte array will NOT be copied. @return this, always.

(final byte[] qualifier)

Source from the content-addressed store, hash-verified

248 * @return {@code this}, always.
249 */
250 public GetRequest qualifier(final byte[] qualifier) {
251 if (qualifier == null) {
252 throw new NullPointerException("qualifier");
253 }
254 KeyValue.checkQualifier(qualifier);
255 this.qualifiers = new byte[][] { qualifier };
256 return this;
257 }
258
259 /**
260 * Specifies a particular set of column qualifiers to get.

Callers 2

executeMethod · 0.95
GetRequestMethod · 0.95

Calls 1

checkQualifierMethod · 0.95

Tested by 1

executeMethod · 0.76