Uses of Class
com.couchbase.client.java.document.json.JsonObject
-
-
Uses of JsonObject in com.couchbase.client.java
Methods in com.couchbase.client.java that return JsonObject Modifier and Type Method Description JsonObjectMutationState. export()Exports theMutationStateinto a universal format, which can be used either to serialize it into a N1QL query or to send it over the network to a different application/SDK.JsonObjectMutationState. exportForFts()Exports theMutationStateinto a format recognized by the FTS search engine.Methods in com.couchbase.client.java with parameters of type JsonObject Modifier and Type Method Description static MutationStateMutationState. from(JsonObject source)Create aMutationStatefrom the serialized state. -
Uses of JsonObject in com.couchbase.client.java.analytics
Methods in com.couchbase.client.java.analytics that return JsonObject Modifier and Type Method Description JsonObjectAnalyticsMetrics. asJsonObject()Exposes the underlying raw form of the metrics, as aJsonObject.abstract JsonObjectAnalyticsQuery. query()Returns the full query.JsonObjectParameterizedAnalyticsQuery. query()JsonObjectSimpleAnalyticsQuery. query()JsonObjectAnalyticsQueryRow. value()JsonObjectAsyncAnalyticsQueryRow. value()JsonObjectDefaultAnalyticsQueryRow. value()Return theJsonObjectrepresentation of the JSON corresponding to this row.JsonObjectDefaultAsyncAnalyticsQueryRow. value()Return theJsonObjectrepresentation of the JSON corresponding to this row.Methods in com.couchbase.client.java.analytics that return types with arguments of type JsonObject Modifier and Type Method Description List<JsonObject>AnalyticsQueryResult. errors()rx.Observable<JsonObject>AsyncAnalyticsQueryResult. errors()List<JsonObject>DefaultAnalyticsQueryResult. errors()rx.Observable<JsonObject>DefaultAsyncAnalyticsQueryResult. errors()Methods in com.couchbase.client.java.analytics with parameters of type JsonObject Modifier and Type Method Description voidAnalyticsParams. injectParams(JsonObject queryJson)Modifies the given Analytics query (as aJsonObject) to reflect theseN1qlParams.static ParameterizedAnalyticsQueryAnalyticsQuery. parameterized(String statement, JsonObject namedParams)Creates anAnalyticsQuerywith named parameters as part of the query.static ParameterizedAnalyticsQueryAnalyticsQuery. parameterized(String statement, JsonObject namedParams, AnalyticsParams params)Creates anAnalyticsQuerywith named parameters as part of the query.Constructors in com.couchbase.client.java.analytics with parameters of type JsonObject Constructor Description AnalyticsMetrics(JsonObject rawMetrics)Constructor parameters in com.couchbase.client.java.analytics with type arguments of type JsonObject Constructor Description DefaultAnalyticsQueryResult(AsyncAnalyticsDeferredResultHandle asyncHandle, Object signature, AnalyticsMetrics info, List<JsonObject> errors, String finalStatus, Boolean finalSuccess, boolean parseSuccess, String requestId, String clientContextId)Create a default blocking representation of a query result. -
Uses of JsonObject in com.couchbase.client.java.bucket
Methods in com.couchbase.client.java.bucket that return JsonObject Modifier and Type Method Description JsonObjectBucketInfo. raw()Raw JSON server response for advanced analysis.JsonObjectDefaultBucketInfo. raw()Methods in com.couchbase.client.java.bucket with parameters of type JsonObject Modifier and Type Method Description static DefaultBucketInfoDefaultBucketInfo. create(JsonObject raw) -
Uses of JsonObject in com.couchbase.client.java.cluster
Methods in com.couchbase.client.java.cluster that return JsonObject Modifier and Type Method Description JsonObjectBucketSettings. raw()A raw representation of the bucket settings when acquired from the server.JsonObjectClusterInfo. raw()Provides raw access to the full JSON information from the server.JsonObjectDefaultBucketSettings.Builder. raw()JsonObjectDefaultBucketSettings. raw()JsonObjectDefaultClusterInfo. raw()Methods in com.couchbase.client.java.cluster with parameters of type JsonObject Modifier and Type Method Description DefaultBucketSettingsDefaultBucketSettings.Builder. build(JsonObject raw)Build theBucketSettingsfrom the data aggregated by this builder, and set itsBucketSettings.raw()representation as well.Constructors in com.couchbase.client.java.cluster with parameters of type JsonObject Constructor Description DefaultClusterInfo(JsonObject raw) -
Uses of JsonObject in com.couchbase.client.java.document
Methods in com.couchbase.client.java.document with parameters of type JsonObject Modifier and Type Method Description static JsonDocumentJsonDocument. create(String id, int expiry, JsonObject content)Creates aJsonDocumentwhich the document id, JSON content and the expiration time.static JsonDocumentJsonDocument. create(String id, int expiry, JsonObject content, long cas)Creates aJsonDocumentwhich the document id, JSON content, CAS value, expiration time and status code.static JsonDocumentJsonDocument. create(String id, int expiry, JsonObject content, long cas, MutationToken mutationToken)Creates aJsonDocumentwhich the document id, JSON content, CAS value, expiration time and status code.static JsonDocumentJsonDocument. create(String id, JsonObject content)Creates aJsonDocumentwhich the document id and JSON content.static JsonDocumentJsonDocument. create(String id, JsonObject content, long cas)Creates aJsonDocumentwhich the document id, JSON content and the CAS value.static JsonDocumentJsonDocument. from(JsonDocument doc, JsonObject content)Creates a copy from a differentJsonDocument, but changes the content.static JsonDocumentJsonDocument. from(JsonDocument doc, String id, JsonObject content)Creates a copy from a differentJsonDocument, but changes the document ID and content. -
Uses of JsonObject in com.couchbase.client.java.document.json
Methods in com.couchbase.client.java.document.json that return JsonObject Modifier and Type Method Description static JsonObjectJsonObject. create()Creates a emptyJsonObject.static JsonObjectJsonObject. empty()Creates a emptyJsonObject.static JsonObjectJsonObject. from(Map<String,?> mapData)Constructs aJsonObjectfrom aMap<String, ?>.static JsonObjectJsonObject. fromJson(String s)Static method to create aJsonObjectfrom a JSONString.JsonObjectJsonObject. getAndDecryptObject(String name, String providerName)Retrieves the decrypted value from the field name and casts it toJsonObject.JsonObjectJsonArray. getObject(int index)Retrieves the value by the position in theJsonArrayand casts it toJsonObject.JsonObjectJsonObject. getObject(String name)Retrieves the value from the field name and casts it toJsonObject.static JsonObjectJsonValue. jo()Static factory method to create an emptyJsonObject.JsonObjectJsonObject. put(String name, boolean value)Stores aBooleanvalue identified by the field name.JsonObjectJsonObject. put(String name, double value)Stores aDoublevalue identified by the field name.JsonObjectJsonObject. put(String name, int value)Stores aIntegervalue identified by the field name.JsonObjectJsonObject. put(String name, long value)Stores aLongvalue identified by the field name.JsonObjectJsonObject. put(String name, JsonArray value)Stores aJsonArrayvalue identified by the field name.JsonObjectJsonObject. put(String name, JsonObject value)Stores aJsonObjectvalue identified by the field name.JsonObjectJsonObject. put(String name, Number value)Stores aNumbervalue identified by the field name.JsonObjectJsonObject. put(String name, Object value)Stores aObjectvalue identified by the field name.JsonObjectJsonObject. put(String name, String value)Stores aStringvalue identified by the field name.JsonObjectJsonObject. put(String name, List<?> value)Stores aJsonArrayvalue identified by the field name.JsonObjectJsonObject. put(String name, Map<String,?> value)Attempt to convert aMapto aJsonObjectvalue and store it, identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, boolean value, String providerName)Stores aBooleanvalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, double value, String providerName)Stores aDoublevalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, int value, String providerName)Stores aIntegervalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, long value, String providerName)Stores aLongvalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, JsonArray value, String providerName)Stores aJsonArrayvalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, JsonObject value, String providerName)Stores aJsonObjectvalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, Number value, String providerName)Stores aNumbervalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, Object value, String providerName)Stores theObjectvalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, String value, String providerName)Stores aStringvalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, List<?> value, String providerName)Stores aJsonArrayvalue as encrypted identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, Map<String,?> value, String providerName)Attempt to convert aMapto aJsonObjectvalue and store it, as encrypted identified by the field name.JsonObjectJsonObject. putNull(String name)Store a null value identified by the field's name.JsonObjectJsonObject. putNullAndEncrypt(String name, String providerName)Store a null value as encrypted identified by the field's name.JsonObjectJsonObject. removeKey(String name)Removes an entry from theJsonObject.Methods in com.couchbase.client.java.document.json with parameters of type JsonObject Modifier and Type Method Description JsonArrayJsonArray. add(JsonObject value)Append anJsonObjectelement to theJsonArray.JsonObjectJsonObject. put(String name, JsonObject value)Stores aJsonObjectvalue identified by the field name.JsonObjectJsonObject. putAndEncrypt(String name, JsonObject value, String providerName)Stores aJsonObjectvalue as encrypted identified by the field name. -
Uses of JsonObject in com.couchbase.client.java.error
Methods in com.couchbase.client.java.error that return JsonObject Modifier and Type Method Description JsonObjectQueryExecutionException. getN1qlError()Constructors in com.couchbase.client.java.error with parameters of type JsonObject Constructor Description QueryExecutionException(String message, JsonObject n1qlError)QueryExecutionException(String message, JsonObject n1qlError, Throwable cause) -
Uses of JsonObject in com.couchbase.client.java.query
Methods in com.couchbase.client.java.query that return JsonObject Modifier and Type Method Description JsonObjectN1qlMetrics. asJsonObject()Exposes the underlying raw form of the metrics, as aJsonObject.JsonObjectAbstractN1qlQuery. n1ql()abstract JsonObjectN1qlQuery. n1ql()Convert this query to a full N1QL query in Json form.JsonObjectPreparedN1qlQuery. n1ql()JsonObjectDefaultN1qlQueryResult. profileInfo()JsonObjectN1qlQueryResult. profileInfo()JsonObjectAsyncN1qlQueryRow. value()JsonObjectDefaultAsyncN1qlQueryRow. value()Return theJsonObjectrepresentation of the JSON corresponding to this row.JsonObjectDefaultN1qlQueryRow. value()Return theJsonObjectrepresentation of the JSON corresponding to this row.JsonObjectN1qlQueryRow. value()Methods in com.couchbase.client.java.query that return types with arguments of type JsonObject Modifier and Type Method Description rx.Observable<JsonObject>AsyncN1qlQueryResult. errors()rx.Observable<JsonObject>DefaultAsyncN1qlQueryResult. errors()List<JsonObject>DefaultN1qlQueryResult. errors()List<JsonObject>N1qlQueryResult. errors()rx.Observable<JsonObject>AsyncN1qlQueryResult. profileInfo()rx.Observable<JsonObject>DefaultAsyncN1qlQueryResult. profileInfo()Methods in com.couchbase.client.java.query with parameters of type JsonObject Modifier and Type Method Description voidN1qlParams. injectParams(JsonObject queryJson)Modifies the given N1QL query (as aJsonObject) to reflect theseN1qlParams.static ParameterizedN1qlQueryN1qlQuery. parameterized(Statement statement, JsonObject namedParams)Create a new query with named parameters.static ParameterizedN1qlQueryN1qlQuery. parameterized(Statement statement, JsonObject namedParams, N1qlParams params)Create a new query with named parameters.static ParameterizedN1qlQueryN1qlQuery. parameterized(String statement, JsonObject namedParams)Create a new query with named parameters.static ParameterizedN1qlQueryN1qlQuery. parameterized(String statement, JsonObject namedParams, N1qlParams params)Create a new query with named parameters.static voidAbstractN1qlQuery. populateParameters(JsonObject query, JsonValue params)Populate aJsonObjectrepresentation of a query with parameters, either positional or named.Constructors in com.couchbase.client.java.query with parameters of type JsonObject Constructor Description DefaultN1qlQueryResult(List<AsyncN1qlQueryRow> rows, Object signature, N1qlMetrics info, List<JsonObject> errors, JsonObject profileInfo, String finalStatus, Boolean finalSuccess, boolean parseSuccess, String requestId, String clientContextId)Create a default blocking representation of a query result.N1qlMetrics(JsonObject rawMetrics)PreparedN1qlQuery(PreparedPayload plan, JsonObject namedParams, N1qlParams params) -
Uses of JsonObject in com.couchbase.client.java.query.core
Methods in com.couchbase.client.java.query.core with parameters of type JsonObject Modifier and Type Method Description protected PreparedPayloadN1qlQueryExecutor. extractPreparedPayloadFromResponse(PrepareStatement prepared, JsonObject response)Extracts thePreparedPayloadfrom the server's response during a PREPARE. -
Uses of JsonObject in com.couchbase.client.java.query.dsl
Methods in com.couchbase.client.java.query.dsl with parameters of type JsonObject Modifier and Type Method Description ExpressionExpression. and(JsonObject right)AND-combines two expressions.ExpressionExpression. between(JsonObject right)Adds a BETWEEN clause between the current and the given expression.ExpressionExpression. concat(JsonObject right)Combines two expressions with the concatenation operator ("||").ExpressionExpression. eq(JsonObject right)Combines two expressions with the equals operator ("=").ExpressionExpression. gt(JsonObject right)Combines two expressions with the greater than operator (">").ExpressionExpression. gte(JsonObject right)Combines two expressions with the greater or equals than operator (">=").ExpressionExpression. in(JsonObject right)Adds a IN clause between the current and the given expression.ExpressionExpression. like(JsonObject right)Adds a LIKE clause between the current and the given expression.ExpressionExpression. lt(JsonObject right)Combines two expressions with the less than operator ("<").ExpressionExpression. lte(JsonObject right)Combines two expressions with the less or equals than operator ("<=").ExpressionExpression. ne(JsonObject right)Combines two expressions with the not equals operator ("!=").ExpressionExpression. notBetween(JsonObject right)Adds a NOT BETWEEN clause between the current and the given expression.ExpressionExpression. notIn(JsonObject right)Adds a NOT IN clause between the current and the given expression.ExpressionExpression. notLike(JsonObject right)Adds a NOT LIKE clause between the current and the given expression.ExpressionExpression. or(JsonObject right)OR-combines two expressions.static ExpressionExpression. x(JsonObject value)Creates an arbitrary expression from the given json object. -
Uses of JsonObject in com.couchbase.client.java.query.dsl.element
Constructors in com.couchbase.client.java.query.dsl.element with parameters of type JsonObject Constructor Description WithIndexOptionElement(JsonObject options) -
Uses of JsonObject in com.couchbase.client.java.query.dsl.functions
Methods in com.couchbase.client.java.query.dsl.functions with parameters of type JsonObject Modifier and Type Method Description static ExpressionJsonFunctions. decodeJson(JsonObject json)The returned Expression unmarshals the JSON constant into a N1QL value.static ExpressionObjectFunctions. objectLength(JsonObject value)Returned expression results in the number of name-value pairs in the object.static ExpressionObjectFunctions. objectNames(JsonObject value)Returned expression results in an array containing the attribute names of the object, in N1QL collation order.static ExpressionObjectFunctions. objectPairs(JsonObject value)Returned expression results in an array containing the attribute name and value pairs of the object, in N1QL collation order of the names.static ExpressionObjectFunctions. objectValues(JsonObject value)Returned expression results in an array containing the attribute values of the object, in N1QL collation order of the corresponding names. -
Uses of JsonObject in com.couchbase.client.java.query.dsl.path
Methods in com.couchbase.client.java.query.dsl.path with parameters of type JsonObject Modifier and Type Method Description MergeUpdateSetPathDefaultMergeUpdateSetOrUnsetPath. set(Expression path, JsonObject value)MergeUpdateSetPathDefaultMergeUpdateSetOrUnsetPath. set(Expression path, JsonObject value, Expression updateFor)MergeUpdateSetPathDefaultMergeUpdateSetOrUnsetPath. set(String path, JsonObject value)MergeUpdateSetPathDefaultMergeUpdateSetOrUnsetPath. set(String path, JsonObject value, Expression updateFor)MergeUpdateSetPathDefaultMergeUpdateSetPath. set(Expression path, JsonObject value)MergeUpdateSetPathDefaultMergeUpdateSetPath. set(Expression path, JsonObject value, Expression updateFor)MergeUpdateSetPathDefaultMergeUpdateSetPath. set(String path, JsonObject value)MergeUpdateSetPathDefaultMergeUpdateSetPath. set(String path, JsonObject value, Expression updateFor)UpdateSetPathDefaultUpdateSetOrUnsetPath. set(Expression path, JsonObject value)UpdateSetPathDefaultUpdateSetOrUnsetPath. set(Expression path, JsonObject value, Expression updateFor)UpdateSetPathDefaultUpdateSetOrUnsetPath. set(String path, JsonObject value)UpdateSetPathDefaultUpdateSetOrUnsetPath. set(String path, JsonObject value, Expression updateFor)UpdateSetPathDefaultUpdateSetPath. set(Expression path, JsonObject value)UpdateSetPathDefaultUpdateSetPath. set(Expression path, JsonObject value, Expression updateFor)UpdateSetPathDefaultUpdateSetPath. set(String path, JsonObject value)UpdateSetPathDefaultUpdateSetPath. set(String path, JsonObject value, Expression updateFor)MergeUpdateSetPathMergeUpdateSetOrUnsetPath. set(Expression path, JsonObject value)MergeUpdateSetPathMergeUpdateSetOrUnsetPath. set(Expression path, JsonObject value, Expression updateFor)MergeUpdateSetPathMergeUpdateSetOrUnsetPath. set(String path, JsonObject value)MergeUpdateSetPathMergeUpdateSetOrUnsetPath. set(String path, JsonObject value, Expression updateFor)MergeUpdateSetPathMergeUpdateSetPath. set(Expression path, JsonObject value)MergeUpdateSetPathMergeUpdateSetPath. set(Expression path, JsonObject value, Expression updateFor)MergeUpdateSetPathMergeUpdateSetPath. set(String path, JsonObject value)MergeUpdateSetPathMergeUpdateSetPath. set(String path, JsonObject value, Expression updateFor)UpdateSetPathUpdateSetOrUnsetPath. set(Expression path, JsonObject value)UpdateSetPathUpdateSetOrUnsetPath. set(Expression path, JsonObject value, Expression updateFor)UpdateSetPathUpdateSetOrUnsetPath. set(String path, JsonObject value)UpdateSetPathUpdateSetOrUnsetPath. set(String path, JsonObject value, Expression updateFor)UpdateSetPathUpdateSetPath. set(Expression path, JsonObject value)UpdateSetPathUpdateSetPath. set(Expression path, JsonObject value, Expression updateFor)UpdateSetPathUpdateSetPath. set(String path, JsonObject value)UpdateSetPathUpdateSetPath. set(String path, JsonObject value, Expression updateFor)InsertValuesPathDefaultInitialInsertPath. values(Expression id, JsonObject value)InsertValuesPathDefaultInitialInsertPath. values(String id, JsonObject value)InsertValuesPathDefaultInsertValuesPath. values(Expression id, JsonObject value)InsertValuesPathDefaultInsertValuesPath. values(String id, JsonObject value)InsertValuesPathInitialInsertPath. values(Expression id, JsonObject value)InsertValuesPathInitialInsertPath. values(String id, JsonObject value)InsertValuesPathInsertValuesPath. values(Expression id, JsonObject value)InsertValuesPathInsertValuesPath. values(String id, JsonObject value) -
Uses of JsonObject in com.couchbase.client.java.query.util
Methods in com.couchbase.client.java.query.util that return JsonObject Modifier and Type Method Description JsonObjectIndexInfo. raw()Constructors in com.couchbase.client.java.query.util with parameters of type JsonObject Constructor Description IndexInfo(JsonObject raw) -
Uses of JsonObject in com.couchbase.client.java.search
Methods in com.couchbase.client.java.search that return JsonObject Modifier and Type Method Description JsonObjectSearchQuery. export()Exports the whole query as aJsonObject.Methods in com.couchbase.client.java.search with parameters of type JsonObject Modifier and Type Method Description voidSearchQuery. injectParams(JsonObject queryJson)Inject the top level parameters of a query into a preparedJsonObjectthat represents the root of the query. -
Uses of JsonObject in com.couchbase.client.java.search.facet
Methods in com.couchbase.client.java.search.facet with parameters of type JsonObject Modifier and Type Method Description voidDateRangeFacet. injectParams(JsonObject queryJson)voidNumericRangeFacet. injectParams(JsonObject queryJson)voidSearchFacet. injectParams(JsonObject queryJson) -
Uses of JsonObject in com.couchbase.client.java.search.queries
Methods in com.couchbase.client.java.search.queries with parameters of type JsonObject Modifier and Type Method Description protected abstract voidAbstractFtsQuery. injectParams(JsonObject input)Override to inject query-specific parameters when doing theSearchQuery.export().protected voidBooleanFieldQuery. injectParams(JsonObject input)protected voidBooleanQuery. injectParams(JsonObject input)protected voidConjunctionQuery. injectParams(JsonObject input)protected voidDateRangeQuery. injectParams(JsonObject input)protected voidDisjunctionQuery. injectParams(JsonObject input)protected voidDocIdQuery. injectParams(JsonObject input)protected voidGeoBoundingBoxQuery. injectParams(JsonObject input)protected voidGeoDistanceQuery. injectParams(JsonObject input)protected voidGeoPolygonQuery. injectParams(JsonObject input)protected voidMatchAllQuery. injectParams(JsonObject input)protected voidMatchNoneQuery. injectParams(JsonObject input)protected voidMatchPhraseQuery. injectParams(JsonObject input)protected voidMatchQuery. injectParams(JsonObject input)protected voidNumericRangeQuery. injectParams(JsonObject input)protected voidPhraseQuery. injectParams(JsonObject input)protected voidPrefixQuery. injectParams(JsonObject input)protected voidQueryStringQuery. injectParams(JsonObject input)protected voidRegexpQuery. injectParams(JsonObject input)protected voidTermQuery. injectParams(JsonObject input)protected voidTermRangeQuery. injectParams(JsonObject input)protected voidWildcardQuery. injectParams(JsonObject input)voidAbstractFtsQuery. injectParamsAndBoost(JsonObject input)Injects the query's parameters (including the common boost and query-specific parameters) into a preparedJsonObject. -
Uses of JsonObject in com.couchbase.client.java.search.result
Methods in com.couchbase.client.java.search.result that return JsonObject Modifier and Type Method Description JsonObjectSearchQueryRow. explanation()Ifrequested in the query, an explanation of the match, in JSON form. -
Uses of JsonObject in com.couchbase.client.java.search.result.hits
Methods in com.couchbase.client.java.search.result.hits with parameters of type JsonObject Modifier and Type Method Description static HitLocationsDefaultHitLocations. from(JsonObject locationsJson)Parses a FTS JSON representation of aHitLocations. -
Uses of JsonObject in com.couchbase.client.java.search.result.impl
Methods in com.couchbase.client.java.search.result.impl that return JsonObject Modifier and Type Method Description JsonObjectDefaultSearchQueryRow. explanation()Methods in com.couchbase.client.java.search.result.impl with parameters of type JsonObject Modifier and Type Method Description static AsyncSearchQueryResultDefaultAsyncSearchQueryResult. fromJson(JsonObject json)Deprecated.FTS is still in BETA so the response format is likely to change in a future versionConstructors in com.couchbase.client.java.search.result.impl with parameters of type JsonObject Constructor Description DefaultSearchQueryRow(String index, String id, double score, JsonObject explanation, HitLocations locations, Map<String,List<String>> fragments, Map<String,String> fields) -
Uses of JsonObject in com.couchbase.client.java.search.sort
Methods in com.couchbase.client.java.search.sort with parameters of type JsonObject Modifier and Type Method Description voidSearchSort. injectParams(JsonObject queryJson)voidSearchSortField. injectParams(JsonObject queryJson)voidSearchSortGeoDistance. injectParams(JsonObject queryJson) -
Uses of JsonObject in com.couchbase.client.java.subdoc
Methods in com.couchbase.client.java.subdoc with parameters of type JsonObject Modifier and Type Method Description AsyncMutateInBuilderAsyncMutateInBuilder. upsert(JsonObject content)Upsert a full JSON document.MutateInBuilderMutateInBuilder. upsert(JsonObject content)Upsert a full JSON document that doesn't exist. -
Uses of JsonObject in com.couchbase.client.java.transcoder
Methods in com.couchbase.client.java.transcoder that return JsonObject Modifier and Type Method Description JsonObjectJsonTranscoder. byteBufToJsonObject(com.couchbase.client.deps.io.netty.buffer.ByteBuf input)Converts aByteBufto aJsonObject, without releasing the bufferJsonObjectJsonTranscoder. stringToJsonObject(String input)Methods in com.couchbase.client.java.transcoder with parameters of type JsonObject Modifier and Type Method Description com.couchbase.client.deps.io.netty.buffer.ByteBufJsonTranscoder. jsonObjectToByteBuf(JsonObject input)StringJsonTranscoder. jsonObjectToString(JsonObject input)JsonDocumentJsonTranscoder. newDocument(String id, int expiry, JsonObject content, long cas)JsonDocumentJsonTranscoder. newDocument(String id, int expiry, JsonObject content, long cas, MutationToken mutationToken) -
Uses of JsonObject in com.couchbase.client.java.transcoder.crypto
Methods in com.couchbase.client.java.transcoder.crypto that return JsonObject Modifier and Type Method Description JsonObjectJsonCryptoTranscoder. byteBufToJsonObject(com.couchbase.client.deps.io.netty.buffer.ByteBuf input)Converts aByteBufto aJsonObject, without releasing the bufferJsonObjectJsonCryptoTranscoder. stringToJsonObject(String input)Methods in com.couchbase.client.java.transcoder.crypto with parameters of type JsonObject Modifier and Type Method Description StringJsonCryptoTranscoder. jsonObjectToString(JsonObject input)JsonDocumentJsonCryptoTranscoder. newDocument(String id, int expiry, JsonObject content, long cas)JsonDocumentJsonCryptoTranscoder. newDocument(String id, int expiry, JsonObject content, long cas, MutationToken mutationToken) -
Uses of JsonObject in com.couchbase.client.java.util
Method parameters in com.couchbase.client.java.util with type arguments of type JsonObject Modifier and Type Method Description AnalyticsIngester.IngestOptionsAnalyticsIngester.IngestOptions. dataConverter(rx.functions.Func1<JsonObject,JsonObject> dataConverter)Allows to specify a custom converter which modifies each document from the query before it is stored back in the kv service.AnalyticsIngester.IngestOptionsAnalyticsIngester.IngestOptions. dataConverter(rx.functions.Func1<JsonObject,JsonObject> dataConverter)Allows to specify a custom converter which modifies each document from the query before it is stored back in the kv service.AnalyticsIngester.IngestOptionsAnalyticsIngester.IngestOptions. idGenerator(rx.functions.Func1<JsonObject,String> idGenerator)Allows to specify a custom ID generator instead of the default UUID one. -
Uses of JsonObject in com.couchbase.client.java.util.rawQuerying
Methods in com.couchbase.client.java.util.rawQuerying that return JsonObject Modifier and Type Method Description JsonObjectRawQueryExecutor. ftsToJsonObject(SearchQuery query)Synchronously perform aSearchQueryand return the raw N1QL response as aJsonObject.JsonObjectRawQueryExecutor. n1qlToJsonObject(N1qlQuery query)Synchronously perform aN1qlQueryand return the raw N1QL response as aJsonObject.Methods in com.couchbase.client.java.util.rawQuerying that return types with arguments of type JsonObject Modifier and Type Method Description rx.Observable<JsonObject>AsyncRawQueryExecutor. ftsToJsonObject(SearchQuery query)Asynchronously perform aSearchQueryand return the raw N1QL response as aJsonObject.rx.Observable<JsonObject>AsyncRawQueryExecutor. n1qlToJsonObject(N1qlQuery query)Asynchronously perform aN1qlQueryand return the raw N1QL response as aJsonObject. -
Uses of JsonObject in com.couchbase.client.java.view
Methods in com.couchbase.client.java.view that return JsonObject Modifier and Type Method Description JsonObjectAsyncSpatialViewResult. debug()If debug was enabled on the query, it is contained here.JsonObjectAsyncViewResult. debug()If debug was enabled on the query, it is contained here.JsonObjectDefaultAsyncSpatialViewResult. debug()JsonObjectDefaultAsyncViewResult. debug()JsonObjectDefaultSpatialViewResult. debug()JsonObjectDefaultViewResult. debug()JsonObjectSpatialViewResult. debug()If debug was enabled on the query, it is contained here.JsonObjectViewResult. debug()If debug was enabled on the query, it is contained here.JsonObjectDefaultSpatialViewResult. error()JsonObjectDefaultSpatialViewResult. error(long timeout, TimeUnit timeUnit)JsonObjectDefaultViewResult. error()JsonObjectDefaultViewResult. error(long timeout, TimeUnit timeUnit)JsonObjectSpatialViewResult. error()If it was not successful, an error is contained here.JsonObjectSpatialViewResult. error(long timeout, TimeUnit timeUnit)If it was not successful, an error is contained here.JsonObjectViewResult. error()If it was not successful, an error is contained here.JsonObjectViewResult. error(long timeout, TimeUnit timeUnit)If it was not successful, an error is contained here.JsonObjectAsyncSpatialViewRow. geometry()The geometry of the row, if emitted.JsonObjectDefaultAsyncSpatialViewRow. geometry()JsonObjectDefaultSpatialViewRow. geometry()JsonObjectSpatialViewRow. geometry()JsonObjectDesignDocument. toJsonObject()Methods in com.couchbase.client.java.view that return types with arguments of type JsonObject Modifier and Type Method Description rx.Observable<JsonObject>AsyncSpatialViewResult. error()If it was not successful, an error is contained here.rx.Observable<JsonObject>AsyncViewResult. error()If it was not successful, an error is contained here.rx.Observable<JsonObject>DefaultAsyncSpatialViewResult. error()rx.Observable<JsonObject>DefaultAsyncViewResult. error()Methods in com.couchbase.client.java.view with parameters of type JsonObject Modifier and Type Method Description ViewQueryViewQuery. endKey(JsonObject key)static DesignDocumentDesignDocument. from(String name, JsonObject raw)Create a design document from a JSON representation of it.ViewQueryViewQuery. key(JsonObject key)ViewQueryViewQuery. startKey(JsonObject key)Constructors in com.couchbase.client.java.view with parameters of type JsonObject Constructor Description DefaultAsyncSpatialViewResult(rx.Observable<AsyncSpatialViewRow> rows, boolean success, rx.Observable<JsonObject> error, JsonObject debug)DefaultAsyncSpatialViewRow(AsyncBucket bucket, String id, JsonArray key, Object value, JsonObject geometry, Document<?> document)DefaultAsyncViewResult(rx.Observable<AsyncViewRow> rows, int totalRows, boolean success, rx.Observable<JsonObject> error, JsonObject debug)DefaultSpatialViewResult(CouchbaseEnvironment env, Bucket bucket, rx.Observable<AsyncSpatialViewRow> rows, boolean success, rx.Observable<JsonObject> error, JsonObject debug)DefaultViewResult(CouchbaseEnvironment env, Bucket bucket, rx.Observable<AsyncViewRow> rows, int totalRows, boolean success, rx.Observable<JsonObject> error, JsonObject debug)
-