3333 * @see org.hibernate.query.Query
3434 */
3535public interface ReactiveQuery <R > extends ReactiveSelectionQuery <R >, ReactiveMutationQuery <R > {
36+ @ Override
3637 String getQueryString ();
3738
39+ @ Override
3840 String getComment ();
3941
42+ @ Override
4043 ReactiveQuery <R > setComment (String comment );
4144
4245 ReactiveQuery <R > addQueryHint (String hint );
@@ -55,6 +58,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
5558
5659 QueryOptions getQueryOptions ();
5760
61+ @ Override
5862 ParameterMetadata getParameterMetadata ();
5963
6064 @ Override
@@ -98,18 +102,21 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
98102 *
99103 * @see #setParameter(int, Object, Type)
100104 */
105+ @ Override
101106 <P > ReactiveQuery <R > setParameter (int parameter , P argument , Class <P > type );
102107
103108 /**
104109 * Bind the given argument to an ordinal query parameter using the given
105110 * {@link Type}.
106111 */
112+ @ Override
107113 <P > ReactiveQuery <R > setParameter (int parameter , P argument , Type <P > type );
108114
109115 /**
110116 * Bind an {@link Instant} value to the ordinal query parameter using
111117 * just the portion indicated by the given {@link TemporalType}.
112118 */
119+ @ Override
113120 ReactiveQuery <R > setParameter (int parameter , Instant argument , TemporalType temporalType );
114121
115122 /**
@@ -124,10 +131,13 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
124131 @ Override
125132 ReactiveQuery <R > setParameter (int parameter , Calendar argument , TemporalType temporalType );
126133
134+ @ Override
127135 <T > ReactiveQuery <R > setParameter (QueryParameter <T > parameter , T argument );
128136
137+ @ Override
129138 <P > ReactiveQuery <R > setParameter (QueryParameter <P > parameter , P argument , Class <P > type );
130139
140+ @ Override
131141 <P > ReactiveQuery <R > setParameter (QueryParameter <P > parameter , P argument , Type <P > type );
132142
133143 @ Override
@@ -139,8 +149,10 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
139149 @ Override
140150 ReactiveQuery <R > setParameter (Parameter <Date > parameter , Date argument , TemporalType temporalType );
141151
152+ @ Override
142153 ReactiveQuery <R > setParameterList (String parameter , @ SuppressWarnings ("rawtypes" ) Collection arguments );
143154
155+ @ Override
144156 <P > ReactiveQuery <R > setParameterList (String parameter , Collection <? extends P > arguments , Class <P > javaType );
145157
146158 /**
@@ -152,6 +164,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
152164 *
153165 * @return {@code this}, for method chaining
154166 */
167+ @ Override
155168 <P > ReactiveQuery <R > setParameterList (String parameter , Collection <? extends P > arguments , Type <P > type );
156169
157170 /**
@@ -165,6 +178,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
165178 *
166179 * @return {@code this}, for method chaining
167180 */
181+ @ Override
168182 ReactiveQuery <R > setParameterList (String parameter , Object [] values );
169183
170184 /**
@@ -180,6 +194,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
180194 *
181195 * @return {@code this}, for method chaining
182196 */
197+ @ Override
183198 <P > ReactiveQuery <R > setParameterList (String parameter , P [] arguments , Class <P > javaType );
184199
185200
@@ -192,6 +207,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
192207 *
193208 * @return {@code this}, for method chaining
194209 */
210+ @ Override
195211 <P > ReactiveQuery <R > setParameterList (String parameter , P [] arguments , Type <P > type );
196212
197213 /**
@@ -205,6 +221,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
205221 *
206222 * @return {@code this}, for method chaining
207223 */
224+ @ Override
208225 ReactiveQuery <R > setParameterList (int parameter , @ SuppressWarnings ("rawtypes" ) Collection arguments );
209226
210227 /**
@@ -220,6 +237,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
220237 *
221238 * @return {@code this}, for method chaining
222239 */
240+ @ Override
223241 <P > ReactiveQuery <R > setParameterList (int parameter , Collection <? extends P > arguments , Class <P > javaType );
224242
225243 /**
@@ -231,6 +249,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
231249 *
232250 * @return {@code this}, for method chaining
233251 */
252+ @ Override
234253 <P > ReactiveQuery <R > setParameterList (int parameter , Collection <? extends P > arguments , Type <P > type );
235254
236255 /**
@@ -244,6 +263,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
244263 *
245264 * @return {@code this}, for method chaining
246265 */
266+ @ Override
247267 ReactiveQuery <R > setParameterList (int parameter , Object [] arguments );
248268
249269 /**
@@ -259,6 +279,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
259279 *
260280 * @return {@code this}, for method chaining
261281 */
282+ @ Override
262283 <P > ReactiveQuery <R > setParameterList (int parameter , P [] arguments , Class <P > javaType );
263284
264285 /**
@@ -270,6 +291,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
270291 *
271292 * @return {@code this}, for method chaining
272293 */
294+ @ Override
273295 <P > ReactiveQuery <R > setParameterList (int parameter , P [] arguments , Type <P > type );
274296
275297 /**
@@ -284,6 +306,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
284306 *
285307 * @return {@code this}, for method chaining
286308 */
309+ @ Override
287310 <P > ReactiveQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > arguments );
288311
289312 /**
@@ -300,6 +323,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
300323 *
301324 * @return {@code this}, for method chaining
302325 */
326+ @ Override
303327 <P > ReactiveQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > arguments , Class <P > javaType );
304328
305329 /**
@@ -314,6 +338,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
314338 *
315339 * @return {@code this}, for method chaining
316340 */
341+ @ Override
317342 <P > ReactiveQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > arguments , Type <P > type );
318343
319344 /**
@@ -329,6 +354,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
329354 *
330355 * @return {@code this}, for method chaining
331356 */
357+ @ Override
332358 <P > ReactiveQuery <R > setParameterList (QueryParameter <P > parameter , P [] arguments );
333359
334360 /**
@@ -345,6 +371,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
345371 *
346372 * @return {@code this}, for method chaining
347373 */
374+ @ Override
348375 <P > ReactiveQuery <R > setParameterList (QueryParameter <P > parameter , P [] arguments , Class <P > javaType );
349376
350377 /**
@@ -359,6 +386,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
359386 *
360387 * @return {@code this}, for method chaining
361388 */
389+ @ Override
362390 <P > ReactiveQuery <R > setParameterList (QueryParameter <P > parameter , P [] arguments , Type <P > type );
363391
364392 /**
@@ -370,6 +398,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
370398 *
371399 * @return {@code this}, for method chaining
372400 */
401+ @ Override
373402 ReactiveQuery <R > setProperties (Object bean );
374403
375404 /**
@@ -381,6 +410,7 @@ public interface ReactiveQuery<R> extends ReactiveSelectionQuery<R>, ReactiveMut
381410 *
382411 * @return {@code this}, for method chaining
383412 */
413+ @ Override
384414 ReactiveQuery <R > setProperties (@ SuppressWarnings ("rawtypes" ) Map bean );
385415
386416
0 commit comments