com.couchbase.client.java.query.AsyncN1qlQueryRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The official Couchbase Java SDK
package com.couchbase.client.java.query;
import com.couchbase.client.java.document.json.JsonObject;
public interface AsyncN1qlQueryRow {
/**
* @return the raw array of bytes representing the JSON of this row.
*/
byte[] byteValue();
/**
* @return the {@link JsonObject} representation of the JSON corresponding to this row.
*/
JsonObject value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy