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/AccumulatorOperators.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2016. the original author or authors.
2
+
* Copyright 2016-2021 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ArithmeticOperators.java
+22-22
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2016. the original author or authors.
2
+
* Copyright 2016-2021 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -644,7 +644,7 @@ public static Add valueOf(Number value) {
644
644
645
645
/**
646
646
* Add the value stored at the given field.
647
-
*
647
+
*
648
648
* @param fieldReference must not be {@literal null}.
649
649
* @return new instance of {@link Add}.
650
650
*/
@@ -656,7 +656,7 @@ public Add add(String fieldReference) {
656
656
657
657
/**
658
658
* Add the evaluation result of the given {@link AggregationExpression}.
659
-
*
659
+
*
660
660
* @param expression must not be {@literal null}.
661
661
* @return new instance of {@link Add}.
662
662
*/
@@ -668,7 +668,7 @@ public Add add(AggregationExpression expression) {
668
668
669
669
/**
670
670
* Add the given value.
671
-
*
671
+
*
672
672
* @param value must not be {@literal null}.
673
673
* @return new instance of {@link Add}.
674
674
*/
@@ -784,7 +784,7 @@ public static Divide valueOf(Number value) {
784
784
785
785
/**
786
786
* Divide by the value stored at the given field.
787
-
*
787
+
*
788
788
* @param fieldReference must not be {@literal null}.
789
789
* @return new instance of {@link Divide}.
790
790
*/
@@ -796,7 +796,7 @@ public Divide divideBy(String fieldReference) {
796
796
797
797
/**
798
798
* Divide by the evaluation results of the given {@link AggregationExpression}.
799
-
*
799
+
*
800
800
* @param expression must not be {@literal null}.
801
801
* @return new instance of {@link Divide}.
802
802
*/
@@ -808,7 +808,7 @@ public Divide divideBy(AggregationExpression expression) {
808
808
809
809
/**
810
810
* Divide by the given value.
811
-
*
811
+
*
812
812
* @param value must not be {@literal null}.
813
813
* @return new instance of {@link Divide}.
814
814
*/
@@ -1030,7 +1030,7 @@ public static Log valueOf(Number value) {
1030
1030
1031
1031
/**
1032
1032
* Use the value stored at the given field as log base.
1033
-
*
1033
+
*
1034
1034
* @param fieldReference must not be {@literal null}.
1035
1035
* @return new instance of {@link Log}.
1036
1036
*/
@@ -1042,7 +1042,7 @@ public Log log(String fieldReference) {
1042
1042
1043
1043
/**
1044
1044
* Use the evaluated value of the given {@link AggregationExpression} as log base.
1045
-
*
1045
+
*
1046
1046
* @param expression must not be {@literal null}.
1047
1047
* @return new instance of {@link Log}.
1048
1048
*/
@@ -1054,7 +1054,7 @@ public Log log(AggregationExpression expression) {
1054
1054
1055
1055
/**
1056
1056
* Use the given value as log base.
1057
-
*
1057
+
*
1058
1058
* @param base must not be {@literal null}.
1059
1059
* @return new instance of {@link Log}.
1060
1060
*/
@@ -1170,7 +1170,7 @@ public static Mod valueOf(Number value) {
1170
1170
1171
1171
/**
1172
1172
* Use the value stored at the given field as mod base.
1173
-
*
1173
+
*
1174
1174
* @param fieldReference must not be {@literal null}.
1175
1175
* @return new instance of {@link Mod}.
1176
1176
*/
@@ -1182,7 +1182,7 @@ public Mod mod(String fieldReference) {
1182
1182
1183
1183
/**
1184
1184
* Use evaluated value of the given {@link AggregationExpression} as mod base.
1185
-
*
1185
+
*
1186
1186
* @param expression must not be {@literal null}.
1187
1187
* @return new instance of {@link Mod}.
1188
1188
*/
@@ -1194,7 +1194,7 @@ public Mod mod(AggregationExpression expression) {
1194
1194
1195
1195
/**
1196
1196
* Use the given value as mod base.
1197
-
*
1197
+
*
1198
1198
* @param base must not be {@literal null}.
1199
1199
* @return new instance of {@link Mod}.
1200
1200
*/
@@ -1257,7 +1257,7 @@ public static Multiply valueOf(Number value) {
1257
1257
1258
1258
/**
1259
1259
* Multiply by the value stored at the given field.
1260
-
*
1260
+
*
1261
1261
* @param fieldReference must not be {@literal null}.
1262
1262
* @return new instance of {@link Multiply}.
1263
1263
*/
@@ -1269,7 +1269,7 @@ public Multiply multiplyBy(String fieldReference) {
1269
1269
1270
1270
/**
1271
1271
* Multiply by the evaluated value of the given {@link AggregationExpression}.
1272
-
*
1272
+
*
1273
1273
* @param expression must not be {@literal null}.
1274
1274
* @return new instance of {@link Multiply}.
1275
1275
*/
@@ -1281,7 +1281,7 @@ public Multiply multiplyBy(AggregationExpression expression) {
1281
1281
1282
1282
/**
1283
1283
* Multiply by the given value.
1284
-
*
1284
+
*
1285
1285
* @param value must not be {@literal null}.
1286
1286
* @return new instance of {@link Multiply}.
1287
1287
*/
@@ -1344,7 +1344,7 @@ public static Pow valueOf(Number value) {
1344
1344
1345
1345
/**
1346
1346
* Pow by the value stored at the given field.
1347
-
*
1347
+
*
1348
1348
* @param fieldReference must not be {@literal null}.
1349
1349
* @return new instance of {@link Pow}.
1350
1350
*/
@@ -1356,7 +1356,7 @@ public Pow pow(String fieldReference) {
1356
1356
1357
1357
/**
1358
1358
* Pow by the evaluated value of the given {@link AggregationExpression}.
1359
-
*
1359
+
*
1360
1360
* @param expression must not be {@literal null}.
1361
1361
* @return new instance of {@link Pow}.
1362
1362
*/
@@ -1368,7 +1368,7 @@ public Pow pow(AggregationExpression expression) {
1368
1368
1369
1369
/**
1370
1370
* Pow by the given value.
1371
-
*
1371
+
*
1372
1372
* @param value must not be {@literal null}.
1373
1373
* @return new instance of {@link Pow}.
1374
1374
*/
@@ -1484,7 +1484,7 @@ public static Subtract valueOf(Number value) {
1484
1484
1485
1485
/**
1486
1486
* Subtract the value stored at the given field.
1487
-
*
1487
+
*
1488
1488
* @param fieldReference must not be {@literal null}.
1489
1489
* @return new instance of {@link Pow}.
1490
1490
*/
@@ -1496,7 +1496,7 @@ public Subtract subtract(String fieldReference) {
1496
1496
1497
1497
/**
1498
1498
* Subtract the evaluated value of the given {@link AggregationExpression}.
1499
-
*
1499
+
*
1500
1500
* @param expression must not be {@literal null}.
1501
1501
* @return new instance of {@link Pow}.
1502
1502
*/
@@ -1508,7 +1508,7 @@ public Subtract subtract(AggregationExpression expression) {
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/DataTypeOperators.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2016. the original author or authors.
2
+
* Copyright 2016-2021 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/NestedDelegatingExpressionAggregationOperationContext.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2016. the original author or authors.
2
+
* Copyright 2016-2021 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/VariableOperators.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2016. the original author or authors.
2
+
* Copyright 2016-2021 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
0 commit comments