Package com.mongodb.client.model
Class BucketOptions
- java.lang.Object
-
- com.mongodb.client.model.BucketOptions
-
@Deprecated(since="2021-05-27") public class BucketOptions extends Object
Deprecated.Usage of this API is not supported in AEM as a Cloud Service.The options for a $bucket aggregation pipeline stage- Since:
- 3.4
-
-
Constructor Summary
Constructors Constructor Description BucketOptions()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description BucketOptionsdefaultBucket(Object name)Deprecated.The name of the default bucket for values outside the defined bucketsbooleanequals(Object o)Deprecated.ObjectgetDefaultBucket()Deprecated.List<BsonField>getOutput()Deprecated.inthashCode()Deprecated.BucketOptionsoutput(BsonField... output)Deprecated.The definition of the output document in each bucketBucketOptionsoutput(List<BsonField> output)Deprecated.The definition of the output document in each bucketStringtoString()Deprecated.
-
-
-
Method Detail
-
defaultBucket
public BucketOptions defaultBucket(@Nullable Object name)
Deprecated.The name of the default bucket for values outside the defined buckets- Parameters:
name- the bucket value- Returns:
- this
-
getDefaultBucket
@Nullable public Object getDefaultBucket()
Deprecated.- Returns:
- the default bucket value
-
getOutput
@Nullable public List<BsonField> getOutput()
Deprecated.- Returns:
- the output document definition
-
output
public BucketOptions output(BsonField... output)
Deprecated.The definition of the output document in each bucket- Parameters:
output- the output document definition- Returns:
- this
-
output
public BucketOptions output(List<BsonField> output)
Deprecated.The definition of the output document in each bucket- Parameters:
output- the output document definition- Returns:
- this
-
-