@@ -86,8 +86,8 @@ public static FilterBuilder contains(String property, String property2) {
86
86
return contains (property , property2 , false );
87
87
}
88
88
89
- public static FilterBuilder contains (String property , String property2 , boolean ignoreCase ) {
90
- return new FilterBuilder (property , Operator .CONTAINS , property2 , ignoreCase );
89
+ public static FilterBuilder contains (String property , String pattern , boolean ignoreCase ) {
90
+ return new FilterBuilder (property , Operator .CONTAINS , pattern , ignoreCase );
91
91
}
92
92
93
93
public static FilterBuilder matches (String property , String pattern ) {
@@ -98,12 +98,12 @@ public static FilterBuilder matches(String property, String pattern, boolean ign
98
98
return new FilterBuilder (property , Operator .MATCHES , pattern , ignoreCase );
99
99
}
100
100
101
- public static StringCondition . FilterBuilder startsWith (String property , String pattern ) {
101
+ public static FilterBuilder startsWith (String property , String pattern ) {
102
102
return startsWith (property , pattern , false );
103
103
}
104
104
105
- public static StringCondition . FilterBuilder startsWith (String property , String pattern , boolean ignoreCase ) {
106
- return new StringCondition . FilterBuilder (property , StringCondition . Operator .STARTS_WITH , pattern , ignoreCase );
105
+ public static FilterBuilder startsWith (String property , String pattern , boolean ignoreCase ) {
106
+ return new FilterBuilder (property , Operator .STARTS_WITH , pattern , ignoreCase );
107
107
}
108
108
109
109
public static class FilterBuilder {
0 commit comments