@@ -158,14 +158,14 @@ public static Criteria matchingDocumentStructure(MongoJsonSchema schema) {
158
158
* <pre class="code">
159
159
* expr(() -> Document.parse("{ $gt : [ '$spent', '$budget'] }")))
160
160
* </pre>
161
- *
161
+ *
162
162
* or an {@link org.springframework.data.mongodb.core.aggregation.AggregationExpression} which will be subject to
163
163
* context (domain type) specific field mapping.
164
164
*
165
165
* <pre class="code">
166
166
* expr(valueOf("amountSpent").greaterThan("budget"))
167
167
* </pre>
168
- *
168
+ *
169
169
* @param expression must not be {@literal null}.
170
170
* @return new instance of {@link Criteria}.
171
171
* @since 4.1
@@ -211,8 +211,7 @@ public Criteria is(@Nullable Object value) {
211
211
212
212
/**
213
213
* Creates a criterion using {@literal null} equality comparison which matches documents that either contain the item
214
- * field whose value is {@literal null} or that do not contain the item field.
215
- * <br />
214
+ * field whose value is {@literal null} or that do not contain the item field. <br />
216
215
* Use {@link #isNullValue()} to only query for documents that contain the field whose value is equal to
217
216
* {@link org.bson.BsonType#NULL}. <br />
218
217
* Use {@link #exists(boolean)} to query for documents that do (not) contain the field.
@@ -228,10 +227,9 @@ public Criteria isNull() {
228
227
229
228
/**
230
229
* Creates a criterion using a {@link org.bson.BsonType} comparison which matches only documents that contain the item
231
- * field whose value is equal to {@link org.bson.BsonType#NULL}.
232
- * <br />
233
- * Use {@link #isNull()} to query for documents that contain the field with a {@literal null} value or do not contain the
234
- * field at all. <br />
230
+ * field whose value is equal to {@link org.bson.BsonType#NULL}. <br />
231
+ * Use {@link #isNull()} to query for documents that contain the field with a {@literal null} value or do not contain
232
+ * the field at all. <br />
235
233
* Use {@link #exists(boolean)} to query for documents that do (not) contain the field.
236
234
*
237
235
* @return this.
@@ -659,8 +657,8 @@ public Criteria intersects(GeoJson geoJson) {
659
657
* Creates a geo-spatial criterion using a {@literal $maxDistance} operation, for use with {@literal $near} or
660
658
* {@literal $nearSphere}.
661
659
* <p>
662
- * <strong>NOTE:</strong> The unit of measure for distance may depends on the used coordinate representation
663
- * (legacy vs. geoJson) as well as the target operation.
660
+ * <strong>NOTE:</strong> The unit of measure for distance may depends on the used coordinate representation (legacy
661
+ * vs. geoJson) as well as the target operation.
664
662
*
665
663
* @param maxDistance radians or meters
666
664
* @return this.
@@ -682,8 +680,8 @@ public Criteria maxDistance(double maxDistance) {
682
680
* Creates a geospatial criterion using a {@literal $minDistance} operation, for use with {@literal $near} or
683
681
* {@literal $nearSphere}.
684
682
* <p>
685
- * <strong>NOTE:</strong> The unit of measure for distance may depends on the used coordinate representation
686
- * (legacy vs. geoJson) as well as the target operation.
683
+ * <strong>NOTE:</strong> The unit of measure for distance may depends on the used coordinate representation (legacy
684
+ * vs. geoJson) as well as the target operation.
687
685
*
688
686
* @param minDistance radians or meters
689
687
* @return this.
0 commit comments