Uses of Class
com.couchbase.client.java.view.DesignDocumentNamespace
Package | Description |
---|---|
com.couchbase.client.java.manager.view | |
com.couchbase.client.java.view |
Namespace for various view-service related classes.
|
-
Uses of DesignDocumentNamespace in com.couchbase.client.java.manager.view
Methods in com.couchbase.client.java.manager.view with parameters of type DesignDocumentNamespace Modifier and Type Method Description CompletableFuture<Void>
AsyncViewIndexManager. dropDesignDocument(String name, DesignDocumentNamespace namespace)
Removes a design document from the server.CompletableFuture<Void>
AsyncViewIndexManager. dropDesignDocument(String name, DesignDocumentNamespace namespace, DropDesignDocumentOptions options)
Removes a design document from the server.reactor.core.publisher.Mono<Void>
ReactiveViewIndexManager. dropDesignDocument(String name, DesignDocumentNamespace namespace)
Removes a design document from the server.reactor.core.publisher.Mono<Void>
ReactiveViewIndexManager. dropDesignDocument(String name, DesignDocumentNamespace namespace, DropDesignDocumentOptions options)
Removes a design document from the server.void
ViewIndexManager. dropDesignDocument(String name, DesignDocumentNamespace namespace)
Removes a design document from the server.void
ViewIndexManager. dropDesignDocument(String name, DesignDocumentNamespace namespace, DropDesignDocumentOptions options)
Removes a design document from the server.CompletableFuture<List<DesignDocument>>
AsyncViewIndexManager. getAllDesignDocuments(DesignDocumentNamespace namespace)
Returns all of the design documents in the specified namespace.CompletableFuture<List<DesignDocument>>
AsyncViewIndexManager. getAllDesignDocuments(DesignDocumentNamespace namespace, GetAllDesignDocumentsOptions options)
Returns all of the design documents in the specified namespace.reactor.core.publisher.Flux<DesignDocument>
ReactiveViewIndexManager. getAllDesignDocuments(DesignDocumentNamespace namespace)
Returns all of the design documents in the specified namespace.reactor.core.publisher.Flux<DesignDocument>
ReactiveViewIndexManager. getAllDesignDocuments(DesignDocumentNamespace namespace, GetAllDesignDocumentsOptions options)
Returns all of the design documents in the specified namespace.List<DesignDocument>
ViewIndexManager. getAllDesignDocuments(DesignDocumentNamespace namespace)
Returns all of the design documents in the specified namespace.List<DesignDocument>
ViewIndexManager. getAllDesignDocuments(DesignDocumentNamespace namespace, GetAllDesignDocumentsOptions options)
Returns all of the design documents in the specified namespace.CompletableFuture<DesignDocument>
AsyncViewIndexManager. getDesignDocument(String name, DesignDocumentNamespace namespace)
Returns the named design document from the specified namespace.CompletableFuture<DesignDocument>
AsyncViewIndexManager. getDesignDocument(String name, DesignDocumentNamespace namespace, GetDesignDocumentOptions options)
Returns the named design document from the specified namespace.reactor.core.publisher.Mono<DesignDocument>
ReactiveViewIndexManager. getDesignDocument(String name, DesignDocumentNamespace namespace)
Returns the design document from the cluster if present.reactor.core.publisher.Mono<DesignDocument>
ReactiveViewIndexManager. getDesignDocument(String name, DesignDocumentNamespace namespace, GetDesignDocumentOptions options)
Returns the design document from the cluster if present with custom options.DesignDocument
ViewIndexManager. getDesignDocument(String name, DesignDocumentNamespace namespace)
Returns the design document from the cluster if present.DesignDocument
ViewIndexManager. getDesignDocument(String name, DesignDocumentNamespace namespace, GetDesignDocumentOptions options)
Returns the design document from the cluster if present with custom options.CompletableFuture<Void>
AsyncViewIndexManager. upsertDesignDocument(DesignDocument doc, DesignDocumentNamespace namespace)
Stores the design document on the server under the specified namespace, replacing any existing document with the same name.CompletableFuture<Void>
AsyncViewIndexManager. upsertDesignDocument(DesignDocument doc, DesignDocumentNamespace namespace, UpsertDesignDocumentOptions options)
Stores the design document on the server under the specified namespace, replacing any existing document with the same name.reactor.core.publisher.Mono<Void>
ReactiveViewIndexManager. upsertDesignDocument(DesignDocument designDocument, DesignDocumentNamespace namespace)
Stores the design document on the server under the specified namespace, replacing any existing document with the same name.reactor.core.publisher.Mono<Void>
ReactiveViewIndexManager. upsertDesignDocument(DesignDocument designDocument, DesignDocumentNamespace namespace, UpsertDesignDocumentOptions options)
Stores the design document on the server under the specified namespace, replacing any existing document with the same name.void
ViewIndexManager. upsertDesignDocument(DesignDocument designDocument, DesignDocumentNamespace namespace)
Stores the design document on the server under the specified namespace, replacing any existing document with the same name.void
ViewIndexManager. upsertDesignDocument(DesignDocument designDocument, DesignDocumentNamespace namespace, UpsertDesignDocumentOptions options)
Stores the design document on the server under the specified namespace, replacing any existing document with the same name. -
Uses of DesignDocumentNamespace in com.couchbase.client.java.view
Methods in com.couchbase.client.java.view that return DesignDocumentNamespace Modifier and Type Method Description static DesignDocumentNamespace
DesignDocumentNamespace. valueOf(String name)
Returns the enum constant of this type with the specified name.static DesignDocumentNamespace[]
DesignDocumentNamespace. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.couchbase.client.java.view with parameters of type DesignDocumentNamespace Modifier and Type Method Description ViewOptions
ViewOptions. namespace(DesignDocumentNamespace namespace)