@@ -165,101 +165,88 @@ public interface CriteriaStep {
165
165
* Creates a {@link Criteria} using equality.
166
166
*
167
167
* @param value must not be {@literal null}.
168
- * @return
169
168
*/
170
169
Criteria is (Object value );
171
170
172
171
/**
173
172
* Creates a {@link Criteria} using equality (is not).
174
173
*
175
174
* @param value must not be {@literal null}.
176
- * @return
177
175
*/
178
176
Criteria not (Object value );
179
177
180
178
/**
181
179
* Creates a {@link Criteria} using {@code IN}.
182
180
*
183
181
* @param values must not be {@literal null}.
184
- * @return
185
182
*/
186
183
Criteria in (Object ... values );
187
184
188
185
/**
189
186
* Creates a {@link Criteria} using {@code IN}.
190
187
*
191
188
* @param values must not be {@literal null}.
192
- * @return
193
189
*/
194
- Criteria in (Collection <? extends Object > values );
190
+ Criteria in (Collection <?> values );
195
191
196
192
/**
197
193
* Creates a {@link Criteria} using {@code NOT IN}.
198
194
*
199
195
* @param values must not be {@literal null}.
200
- * @return
201
196
*/
202
197
Criteria notIn (Object ... values );
203
198
204
199
/**
205
200
* Creates a {@link Criteria} using {@code NOT IN}.
206
201
*
207
202
* @param values must not be {@literal null}.
208
- * @return
209
203
*/
210
- Criteria notIn (Collection <? extends Object > values );
204
+ Criteria notIn (Collection <?> values );
211
205
212
206
/**
213
207
* Creates a {@link Criteria} using less-than ({@literal <}).
214
208
*
215
209
* @param value must not be {@literal null}.
216
- * @return
217
210
*/
218
211
Criteria lessThan (Object value );
219
212
220
213
/**
221
214
* Creates a {@link Criteria} using less-than or equal to ({@literal <=}).
222
215
*
223
216
* @param value must not be {@literal null}.
224
- * @return
225
217
*/
226
218
Criteria lessThanOrEquals (Object value );
227
219
228
220
/**
229
221
* Creates a {@link Criteria} using greater-than({@literal >}).
230
222
*
231
223
* @param value must not be {@literal null}.
232
- * @return
233
224
*/
234
225
Criteria greaterThan (Object value );
235
226
236
227
/**
237
228
* Creates a {@link Criteria} using greater-than or equal to ({@literal >=}).
238
229
*
239
230
* @param value must not be {@literal null}.
240
- * @return
241
231
*/
242
232
Criteria greaterThanOrEquals (Object value );
243
233
244
234
/**
245
235
* Creates a {@link Criteria} using {@code LIKE}.
246
236
*
247
237
* @param value must not be {@literal null}.
248
- * @return
249
238
*/
250
239
Criteria like (Object value );
251
240
252
241
/**
253
242
* Creates a {@link Criteria} using {@code IS NULL}.
254
243
*
255
- * @return
256
244
*/
257
245
Criteria isNull ();
258
246
259
247
/**
260
248
* Creates a {@link Criteria} using {@code IS NOT NULL}.
261
249
*
262
- * @return
263
250
*/
264
251
Criteria isNotNull ();
265
252
}
0 commit comments