Package | Description |
---|---|
com.couchbase.client.java | |
com.couchbase.client.java.subdoc |
Modifier and Type | Method and Description |
---|---|
AsyncLookupInBuilder |
CouchbaseAsyncBucket.lookupIn(String docId) |
AsyncLookupInBuilder |
AsyncBucket.lookupIn(String docId)
Prepare a sub-document lookup through a
builder API . |
Modifier and Type | Method and Description |
---|---|
AsyncLookupInBuilder |
AsyncLookupInBuilder.accessDeleted(boolean accessDeleted)
Set accessDeleted to true, if the document has been deleted to access xattrs
|
AsyncLookupInBuilder |
AsyncLookupInBuilder.exists(Iterable<String> paths,
SubdocOptionsBuilder optionsBuilder)
Check if a value exists inside the document (if it does not, attempting to get the
DocumentFragment.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 the
DocumentFragment.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 the
DocumentFragment.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.
|
Constructor and Description |
---|
LookupInBuilder(AsyncLookupInBuilder async,
long defaultTimeout,
TimeUnit defaultTimeUnit)
Instances of this builder should be obtained through
Bucket.lookupIn(String) rather than directly
constructed. |
Copyright © 2015 Couchbase, Inc.