11
11
import java .util .Date ;
12
12
import java .util .Map ;
13
13
14
+ import jakarta .persistence .metamodel .Type ;
14
15
import org .hibernate .CacheMode ;
15
16
import org .hibernate .FlushMode ;
16
17
import org .hibernate .LockMode ;
17
18
import org .hibernate .LockOptions ;
18
19
import org .hibernate .metamodel .model .domain .BasicDomainType ;
19
- import org .hibernate .query .BindableType ;
20
20
import org .hibernate .query .NativeQuery ;
21
21
import org .hibernate .query .NativeQuery .FetchReturn ;
22
22
import org .hibernate .query .QueryParameter ;
@@ -225,7 +225,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
225
225
<P > ReactiveNativeQuery <R > setParameter (String name , P val , Class <P > type );
226
226
227
227
@ Override
228
- <P > ReactiveNativeQuery <R > setParameter (String name , P val , BindableType <P > type );
228
+ <P > ReactiveNativeQuery <R > setParameter (String name , P val , Type <P > type );
229
229
230
230
@ Override
231
231
ReactiveNativeQuery <R > setParameter (String name , Instant value , TemporalType temporalType );
@@ -243,7 +243,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
243
243
<P > ReactiveNativeQuery <R > setParameter (int position , P val , Class <P > type );
244
244
245
245
@ Override
246
- <P > ReactiveNativeQuery <R > setParameter (int position , P val , BindableType <P > type );
246
+ <P > ReactiveNativeQuery <R > setParameter (int position , P val , Type <P > type );
247
247
248
248
@ Override
249
249
ReactiveNativeQuery <R > setParameter (int position , Instant value , TemporalType temporalType );
@@ -261,7 +261,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
261
261
<P > ReactiveNativeQuery <R > setParameter (QueryParameter <P > parameter , P val , Class <P > type );
262
262
263
263
@ Override
264
- <P > ReactiveNativeQuery <R > setParameter (QueryParameter <P > parameter , P val , BindableType <P > type );
264
+ <P > ReactiveNativeQuery <R > setParameter (QueryParameter <P > parameter , P val , Type <P > type );
265
265
266
266
@ Override
267
267
<P > ReactiveNativeQuery <R > setParameter (Parameter <P > param , P value );
@@ -279,7 +279,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
279
279
<P > ReactiveNativeQuery <R > setParameterList (String name , Collection <? extends P > values , Class <P > type );
280
280
281
281
@ Override
282
- <P > ReactiveNativeQuery <R > setParameterList (String name , Collection <? extends P > values , BindableType <P > type );
282
+ <P > ReactiveNativeQuery <R > setParameterList (String name , Collection <? extends P > values , Type <P > type );
283
283
284
284
@ Override
285
285
ReactiveNativeQuery <R > setParameterList (String name , Object [] values );
@@ -288,7 +288,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
288
288
<P > ReactiveNativeQuery <R > setParameterList (String name , P [] values , Class <P > type );
289
289
290
290
@ Override
291
- <P > ReactiveNativeQuery <R > setParameterList (String name , P [] values , BindableType <P > type );
291
+ <P > ReactiveNativeQuery <R > setParameterList (String name , P [] values , Type <P > type );
292
292
293
293
@ Override
294
294
ReactiveNativeQuery <R > setParameterList (int position , @ SuppressWarnings ("rawtypes" ) Collection values );
@@ -297,7 +297,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
297
297
<P > ReactiveNativeQuery <R > setParameterList (int position , Collection <? extends P > values , Class <P > type );
298
298
299
299
@ Override
300
- <P > ReactiveNativeQuery <R > setParameterList (int position , Collection <? extends P > values , BindableType <P > javaType );
300
+ <P > ReactiveNativeQuery <R > setParameterList (int position , Collection <? extends P > values , Type <P > javaType );
301
301
302
302
@ Override
303
303
ReactiveNativeQuery <R > setParameterList (int position , Object [] values );
@@ -306,7 +306,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
306
306
<P > ReactiveNativeQuery <R > setParameterList (int position , P [] values , Class <P > javaType );
307
307
308
308
@ Override
309
- <P > ReactiveNativeQuery <R > setParameterList (int position , P [] values , BindableType <P > javaType );
309
+ <P > ReactiveNativeQuery <R > setParameterList (int position , P [] values , Type <P > javaType );
310
310
311
311
@ Override
312
312
<P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > values );
@@ -315,7 +315,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
315
315
<P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > values , Class <P > javaType );
316
316
317
317
@ Override
318
- <P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > values , BindableType <P > type );
318
+ <P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > values , Type <P > type );
319
319
320
320
@ Override
321
321
<P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , P [] values );
@@ -324,7 +324,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
324
324
<P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , P [] values , Class <P > javaType );
325
325
326
326
@ Override
327
- <P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , P [] values , BindableType <P > type );
327
+ <P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , P [] values , Type <P > type );
328
328
329
329
@ Override
330
330
ReactiveNativeQuery <R > setProperties (Object bean );
0 commit comments