Uses of Class
com.couchbase.client.java.subdoc.LookupInBuilder
Package | Description |
---|---|
com.couchbase.client.java | |
com.couchbase.client.java.subdoc |
-
Uses of LookupInBuilder in com.couchbase.client.java
Methods in com.couchbase.client.java that return LookupInBuilder Modifier and Type Method Description LookupInBuilder
Bucket. lookupIn(String docId)
Prepare a sub-document lookup through abuilder API
.LookupInBuilder
CouchbaseBucket. lookupIn(String docId)
-
Uses of LookupInBuilder in com.couchbase.client.java.subdoc
Methods in com.couchbase.client.java.subdoc that return LookupInBuilder Modifier and Type Method Description LookupInBuilder
LookupInBuilder. accessDeleted(boolean accessDeleted)
Set accessDeleted to true, if the document has been deleted to access xattrsLookupInBuilder
LookupInBuilder. 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).LookupInBuilder
LookupInBuilder. 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).LookupInBuilder
LookupInBuilder. 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).LookupInBuilder
LookupInBuilder. get()
Get full JSON documentLookupInBuilder
LookupInBuilder. get(Iterable<String> paths, SubdocOptionsBuilder optionsBuilder)
Get a value inside the JSON document.LookupInBuilder
LookupInBuilder. get(String... paths)
Get a value inside the JSON document.LookupInBuilder
LookupInBuilder. get(String path, SubdocOptionsBuilder optionsBuilder)
Get a value inside the JSON document.LookupInBuilder
LookupInBuilder. getCount(Iterable<String> paths, SubdocOptionsBuilder optionsBuilder)
Get a count of values inside the JSON document.LookupInBuilder
LookupInBuilder. getCount(String... paths)
Get a count of values inside the JSON document.LookupInBuilder
LookupInBuilder. getCount(String path, SubdocOptionsBuilder optionsBuilder)
Get a count of values inside the JSON document.LookupInBuilder
LookupInBuilder. includeRaw(boolean includeRaw)
Set to true, includes the raw byte value for each GET in the results, in addition to the deserialized content.