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
Tweak Javadoc to reflect the used type. Create Criteria objects via Criteria.from(…) to expose the Criteria API without the need of casting.
Original pull request: #205.
Copy file name to clipboardExpand all lines: spring-data-relational/src/main/java/org/springframework/data/relational/core/query/CriteriaDefinition.java
+9-7
Original file line number
Diff line number
Diff line change
@@ -33,18 +33,19 @@
33
33
publicinterfaceCriteriaDefinition {
34
34
35
35
/**
36
-
* Static factory method to create an empty Criteria.
36
+
* Static factory method to create an empty {@link CriteriaDefinition}.
37
37
*
38
-
* @return an empty {@link Criteria}.
38
+
* @return an empty {@link CriteriaDefinition}.
39
39
*/
40
40
staticCriteriaDefinitionempty() {
41
41
returnCriteria.EMPTY;
42
42
}
43
43
44
44
/**
45
-
* Create a new {@link Criteria} and combine it as group with {@code AND} using the provided {@link List Criterias}.
45
+
* Create a new {@link CriteriaDefinition} and combine it as group with {@code AND} using the provided {@link List
0 commit comments