Package com.mongodb.client.model
Class BucketAutoOptions
- java.lang.Object
 - 
- com.mongodb.client.model.BucketAutoOptions
 
 
- 
public class BucketAutoOptions extends Object
The options for a $bucketAuto aggregation pipeline stage- Since:
 - 3.4
 - MongoDB documentation
 - $bucketAuto
 - Since server release
 - 3.4
 
 
- 
- 
Constructor Summary
Constructors Constructor Description BucketAutoOptions() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)BucketGranularitygetGranularity()List<BsonField>getOutput()BucketAutoOptionsgranularity(BucketGranularity granularity)Specifies the granularity of the bucket definitions.inthashCode()BucketAutoOptionsoutput(BsonField... output)The definition of the output document in each bucketBucketAutoOptionsoutput(List<BsonField> output)The definition of the output document in each bucketStringtoString() 
 - 
 
- 
- 
Method Detail
- 
getGranularity
@Nullable public BucketGranularity getGranularity()
- Returns:
 - the granularity of the bucket definitions
 
 
- 
granularity
public BucketAutoOptions granularity(@Nullable BucketGranularity granularity)
Specifies the granularity of the bucket definitions.- Parameters:
 granularity- the granularity of the bucket definitions- Returns:
 - this
 - See Also:
 - Preferred numbers, 
BucketGranularity 
 
- 
output
public BucketAutoOptions output(BsonField... output)
The definition of the output document in each bucket- Parameters:
 output- the output document definition- Returns:
 - this
 
 
- 
output
public BucketAutoOptions output(@Nullable List<BsonField> output)
The definition of the output document in each bucket- Parameters:
 output- the output document definition- Returns:
 - this
 
 
 - 
 
 -