You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/AggregationOperationRenderer.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ class AggregationOperationRenderer {
39
39
/**
40
40
* Render a {@link List} of {@link AggregationOperation} given {@link AggregationOperationContext} into their
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/BucketAutoOperation.java
+21-18
Original file line number
Diff line number
Diff line change
@@ -22,18 +22,18 @@
22
22
importorg.bson.Document;
23
23
24
24
/**
25
-
* Encapsulates the aggregation framework {@code $bucketAuto}-operation.
26
-
* <p>
25
+
* Encapsulates the aggregation framework {@code $bucketAuto}-operation. <br />
27
26
* Bucket stage is typically used with {@link Aggregation} and {@code $facet}. Categorizes incoming documents into a
28
27
* specific number of groups, called buckets, based on a specified expression. Bucket boundaries are automatically
29
-
* determined in an attempt to evenly distribute the documents into the specified number of buckets.
30
-
* <p>
31
-
* We recommend to use the static factory method {@link Aggregation#bucketAuto(String, int)} instead of creating instances of
32
-
* this class directly.
28
+
* determined in an attempt to evenly distribute the documents into the specified number of buckets. <br />
29
+
* We recommend to use the static factory method {@link Aggregation#bucketAuto(String, int)} instead of creating
0 commit comments