Package com.mongodb.client.model
Class BucketAutoOptions
- java.lang.Object
-
- com.mongodb.client.model.BucketAutoOptions
-
public class BucketAutoOptions extends java.lang.ObjectThe 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(java.lang.Object o)BucketGranularitygetGranularity()java.util.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(java.util.List<BsonField> output)The definition of the output document in each bucketjava.lang.StringtoString()
-
-
-
Method Detail
-
getGranularity
@Nullable public BucketGranularity getGranularity()
- Returns:
- the granularity of the bucket definitions
-
getOutput
@Nullable public java.util.List<BsonField> getOutput()
- Returns:
- the output document definition
-
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 java.util.List<BsonField> output)
The definition of the output document in each bucket- Parameters:
output- the output document definition- Returns:
- this
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-