Uses of Class
com.couchbase.client.java.subdoc.AsyncLookupInBuilder
Package | Description |
---|---|
com.couchbase.client.java | |
com.couchbase.client.java.subdoc |
-
Uses of AsyncLookupInBuilder in com.couchbase.client.java
Methods in com.couchbase.client.java that return AsyncLookupInBuilder Modifier and Type Method Description AsyncLookupInBuilder
AsyncBucket. lookupIn(String docId)
Prepare a sub-document lookup through abuilder API
.AsyncLookupInBuilder
CouchbaseAsyncBucket. lookupIn(String docId)
-
Uses of AsyncLookupInBuilder in com.couchbase.client.java.subdoc
Methods in com.couchbase.client.java.subdoc that return AsyncLookupInBuilder Modifier and Type Method Description AsyncLookupInBuilder
AsyncLookupInBuilder. accessDeleted(boolean accessDeleted)
Set accessDeleted to true, if the document has been deleted to access xattrsAsyncLookupInBuilder
AsyncLookupInBuilder. exists(Iterable<String> paths, SubdocOptionsBuilder optionsBuilder)
Check if a value exists inside the document (if it does not, attempting to get theDocumentFragment.content(int)
will raise an error).AsyncLookupInBuilder
AsyncLookupInBuilder. exists(String... paths)
Check if a value exists inside the document (if it does not, attempting to get theDocumentFragment.content(int)
will raise an error).AsyncLookupInBuilder
AsyncLookupInBuilder. exists(String path, SubdocOptionsBuilder optionsBuilder)
Check if a value exists inside the document (if it does not, attempting to get theDocumentFragment.content(int)
will raise an error).AsyncLookupInBuilder
AsyncLookupInBuilder. get()
Get the full JSON document.AsyncLookupInBuilder
AsyncLookupInBuilder. get(Iterable<String> paths, SubdocOptionsBuilder optionsBuilder)
Get a value inside the JSON document.AsyncLookupInBuilder
AsyncLookupInBuilder. get(String... paths)
Get a value inside the JSON document.AsyncLookupInBuilder
AsyncLookupInBuilder. get(String path, SubdocOptionsBuilder optionsBuilder)
Get a value inside the JSON document.AsyncLookupInBuilder
AsyncLookupInBuilder. getCount(Iterable<String> paths, SubdocOptionsBuilder optionsBuilder)
Get a value inside the JSON document.AsyncLookupInBuilder
AsyncLookupInBuilder. getCount(String... paths)
Get the count of values inside the JSON document.AsyncLookupInBuilder
AsyncLookupInBuilder. getCount(String path, SubdocOptionsBuilder optionsBuilder)
Get the count of values inside the JSON document.AsyncLookupInBuilder
AsyncLookupInBuilder. includeRaw(boolean includeRaw)
Set to true, includes the raw byte value for each GET in the results, in addition to the deserialized content.Constructors in com.couchbase.client.java.subdoc with parameters of type AsyncLookupInBuilder Constructor Description LookupInBuilder(AsyncLookupInBuilder async, long defaultTimeout, TimeUnit defaultTimeUnit)
Instances of this builder should be obtained throughBucket.lookupIn(String)
rather than directly constructed.