Uses of Class
com.couchbase.client.java.kv.ExistsResult
Package | Description |
---|---|
com.couchbase.client.java |
Holds all classes that are needed for the Couchbase Java SDK.
|
com.couchbase.client.java.kv |
Namespace for various kv-service related classes.
|
-
Uses of ExistsResult in com.couchbase.client.java
Methods in com.couchbase.client.java that return ExistsResult Modifier and Type Method Description ExistsResult
Collection. exists(String id)
Checks if the given document ID exists on the active partition.ExistsResult
Collection. exists(String id, ExistsOptions options)
Checks if the given document ID exists on the active partition with custom options.Methods in com.couchbase.client.java that return types with arguments of type ExistsResult Modifier and Type Method Description CompletableFuture<ExistsResult>
AsyncCollection. exists(String id)
Checks if the given document ID exists on the active partition with default options.CompletableFuture<ExistsResult>
AsyncCollection. exists(String id, ExistsOptions options)
Checks if the given document ID exists on the active partition with custom options.Mono<ExistsResult>
ReactiveCollection. exists(String id)
Checks if the given document ID exists on the active partition with default options.Mono<ExistsResult>
ReactiveCollection. exists(String id, ExistsOptions options)
Checks if the given document ID exists on the active partition with custom options. -
Uses of ExistsResult in com.couchbase.client.java.kv
Methods in com.couchbase.client.java.kv that return types with arguments of type ExistsResult Modifier and Type Method Description static CompletableFuture<ExistsResult>
ExistsAccessor. exists(String key, Core core, GetMetaRequest request)