Class DefaultAsyncAnalyticsQueryRow
java.lang.Object
com.couchbase.client.java.analytics.DefaultAsyncAnalyticsQueryRow
- All Implemented Interfaces:
AsyncAnalyticsQueryRow
@Committed @Public public class DefaultAsyncAnalyticsQueryRow extends Object implements AsyncAnalyticsQueryRow
-
Constructor Summary
Constructors Constructor Description DefaultAsyncAnalyticsQueryRow(byte[] value) -
Method Summary
Modifier and Type Method Description byte[]byteValue()StringtoString()JsonObjectvalue()Return theJsonObjectrepresentation of the JSON corresponding to this row.
-
Constructor Details
-
DefaultAsyncAnalyticsQueryRow
public DefaultAsyncAnalyticsQueryRow(byte[] value)
-
-
Method Details
-
byteValue
public byte[] byteValue()- Specified by:
byteValuein interfaceAsyncAnalyticsQueryRow- Returns:
- the raw array of bytes representing the JSON of this row.
-
value
Return theJsonObjectrepresentation of the JSON corresponding to this row. TheJsonObjectis lazily created frombyteValue()the first time it is requested.- Specified by:
valuein interfaceAsyncAnalyticsQueryRow- Returns:
- the JsonObject representation of the value.
- Throws:
TranscodingException- if the lazy deserialization couldn't be performed due to a Jackson error.
-
toString
-