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 boolean
equals(Object o)
BucketGranularity
getGranularity()
List<BsonField>
getOutput()
BucketAutoOptions
granularity(BucketGranularity granularity)
Specifies the granularity of the bucket definitions.int
hashCode()
BucketAutoOptions
output(BsonField... output)
The definition of the output document in each bucketBucketAutoOptions
output(List<BsonField> output)
The definition of the output document in each bucketString
toString()
-
-
-
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
-
-