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/AggregationExpression.java
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -18,14 +18,18 @@
18
18
importcom.mongodb.DBObject;
19
19
20
20
/**
21
-
* An {@link AggregationExpression} can be used with field expressions in aggregation pipeline stages like {@code project} and
22
-
* {@code group}.
21
+
* An {@link AggregationExpression} can be used with field expressions in aggregation pipeline stages like
22
+
* {@code project} and {@code group}.
23
23
*
24
24
* @author Thomas Darimont
25
+
* @author Oliver Gierke
25
26
*/
26
-
publicinterfaceAggregationExpression {
27
+
interfaceAggregationExpression {
27
28
28
29
/**
30
+
* Turns the {@link AggregationExpression} into a {@link DBObject} within the given
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/AggregationFunctionExpressions.java
+17-8Lines changed: 17 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -27,36 +27,43 @@
27
27
* An enum of supported {@link AggregationExpression}s in aggregation pipeline stages.
28
28
*
29
29
* @author Thomas Darimont
30
+
* @author Oliver Gierke
30
31
* @since 1.10
31
32
*/
32
33
publicenumAggregationFunctionExpressions {
33
34
34
35
SIZE;
35
36
36
37
/**
37
-
* Returns an {@link AggregationExpression} build from the current {@link Enum} name and the given {@code params}.
38
+
* Returns an {@link AggregationExpression} build from the current {@link Enum} name and the given parameters.
0 commit comments