Uses of Class
com.couchbase.client.java.manager.collection.CollectionSpec
-
Packages that use CollectionSpec Package Description com.couchbase.client.java.manager.collection -
-
Uses of CollectionSpec in com.couchbase.client.java.manager.collection
Methods in com.couchbase.client.java.manager.collection that return CollectionSpec Modifier and Type Method Description static CollectionSpec
CollectionSpec. create(String name, String scopeName)
Methods in com.couchbase.client.java.manager.collection that return types with arguments of type CollectionSpec Modifier and Type Method Description Set<CollectionSpec>
ScopeSpec. collections()
Methods in com.couchbase.client.java.manager.collection with parameters of type CollectionSpec Modifier and Type Method Description CompletableFuture<Boolean>
AsyncCollectionManager. collectionExists(CollectionSpec collectionSpec)
Checks if the given collection exists in this bucket.boolean
CollectionManager. collectionExists(CollectionSpec collectionSpec)
Checks if the given collection exists in this bucket.CompletableFuture<Void>
AsyncCollectionManager. createCollection(CollectionSpec collectionSpec)
Creates a collection if it does not already exist.void
CollectionManager. createCollection(CollectionSpec collectionSpec)
Creates a collection if it does not already exist.CompletableFuture<Void>
AsyncCollectionManager. dropCollection(CollectionSpec collectionSpec)
Drops a collection if it exists.void
CollectionManager. dropCollection(CollectionSpec collectionSpec)
Drops a collection if it exists.Method parameters in com.couchbase.client.java.manager.collection with type arguments of type CollectionSpec Modifier and Type Method Description static ScopeSpec
ScopeSpec. create(String name, Set<CollectionSpec> collectionSpecs)
-