Uses of Class
com.couchbase.client.java.kv.GetOptions
-
Packages that use GetOptions Package Description com.couchbase.client.java com.couchbase.client.java.kv -
-
Uses of GetOptions in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type GetOptions Modifier and Type Method Description CompletableFuture<Optional<GetResult>>
AsyncCollection. get(String id, GetOptions options)
Fetches a full document (or a projection of it) from a collection with custom options.Optional<GetResult>
Collection. get(String id, GetOptions options)
Fetches a full Document from a collection with custom options.Mono<Optional<GetResult>>
ReactiveCollection. get(String id, GetOptions options)
Fetches a Document from a collection with custom options. -
Uses of GetOptions in com.couchbase.client.java.kv
Methods in com.couchbase.client.java.kv that return GetOptions Modifier and Type Method Description static GetOptions
GetOptions. getOptions()
Creates a new set ofGetOptions
with aJsonObject
target.GetOptions
GetOptions. project(String... paths)
Allows to specify a custom list paths to fetch from the document instead of the whole.GetOptions
GetOptions. withExpiration(boolean expiration)
If set to true, the get will fetch the expiration for the document as well and return it as part of theGetResult
.
-