Class DropDatasetAnalyticsOptions
java.lang.Object
com.couchbase.client.java.CommonOptions<DropDatasetAnalyticsOptions>
com.couchbase.client.java.manager.analytics.DropDatasetAnalyticsOptions
Allows customizing how datasets are dropped.
- 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from class com.couchbase.client.java.CommonOptionsCommonOptions.BuiltCommonOptions
- 
Method SummaryModifier and TypeMethodDescriptionbuild()dataverseName(String dataverseName) Customizes the dataverse from which this dataset should be dropped.static DropDatasetAnalyticsOptionsCreates a new instance with default values.ignoreIfNotExists(boolean ignore) Customizes if a non-existing dataset should throw an exception or not (false by default, so it will throw).Methods inherited from class com.couchbase.client.java.CommonOptionsclientContext, parentSpan, retryStrategy, self, timeout
- 
Method Details- 
dropDatasetAnalyticsOptionsCreates a new instance with default values.- Returns:
- the instantiated default options.
 
- 
ignoreIfNotExistsCustomizes if a non-existing dataset should throw an exception or not (false by default, so it will throw).- Parameters:
- ignore- true if no exception should be raised if the dataset does not exist.
- Returns:
- this options class for chaining purposes.
 
- 
dataverseNameCustomizes the dataverse from which this dataset should be dropped.- Parameters:
- dataverseName- the name of the dataverse.
- Returns:
- this options class for chaining purposes.
 
- 
build
 
-