1111import java .util .Date ;
1212import java .util .Map ;
1313
14+ import jakarta .persistence .metamodel .Type ;
1415import org .hibernate .CacheMode ;
1516import org .hibernate .FlushMode ;
1617import org .hibernate .LockMode ;
1718import org .hibernate .LockOptions ;
1819import org .hibernate .metamodel .model .domain .BasicDomainType ;
19- import org .hibernate .query .BindableType ;
2020import org .hibernate .query .NativeQuery ;
2121import org .hibernate .query .NativeQuery .FetchReturn ;
2222import org .hibernate .query .QueryParameter ;
@@ -225,7 +225,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
225225 <P > ReactiveNativeQuery <R > setParameter (String name , P val , Class <P > type );
226226
227227 @ 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 );
229229
230230 @ Override
231231 ReactiveNativeQuery <R > setParameter (String name , Instant value , TemporalType temporalType );
@@ -243,7 +243,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
243243 <P > ReactiveNativeQuery <R > setParameter (int position , P val , Class <P > type );
244244
245245 @ 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 );
247247
248248 @ Override
249249 ReactiveNativeQuery <R > setParameter (int position , Instant value , TemporalType temporalType );
@@ -261,7 +261,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
261261 <P > ReactiveNativeQuery <R > setParameter (QueryParameter <P > parameter , P val , Class <P > type );
262262
263263 @ 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 );
265265
266266 @ Override
267267 <P > ReactiveNativeQuery <R > setParameter (Parameter <P > param , P value );
@@ -279,7 +279,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
279279 <P > ReactiveNativeQuery <R > setParameterList (String name , Collection <? extends P > values , Class <P > type );
280280
281281 @ 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 );
283283
284284 @ Override
285285 ReactiveNativeQuery <R > setParameterList (String name , Object [] values );
@@ -288,7 +288,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
288288 <P > ReactiveNativeQuery <R > setParameterList (String name , P [] values , Class <P > type );
289289
290290 @ 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 );
292292
293293 @ Override
294294 ReactiveNativeQuery <R > setParameterList (int position , @ SuppressWarnings ("rawtypes" ) Collection values );
@@ -297,7 +297,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
297297 <P > ReactiveNativeQuery <R > setParameterList (int position , Collection <? extends P > values , Class <P > type );
298298
299299 @ 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 );
301301
302302 @ Override
303303 ReactiveNativeQuery <R > setParameterList (int position , Object [] values );
@@ -306,7 +306,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
306306 <P > ReactiveNativeQuery <R > setParameterList (int position , P [] values , Class <P > javaType );
307307
308308 @ 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 );
310310
311311 @ Override
312312 <P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > values );
@@ -315,7 +315,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
315315 <P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , Collection <? extends P > values , Class <P > javaType );
316316
317317 @ 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 );
319319
320320 @ Override
321321 <P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , P [] values );
@@ -324,7 +324,7 @@ public interface ReactiveNativeQuery<R> extends ReactiveQuery<R> {
324324 <P > ReactiveNativeQuery <R > setParameterList (QueryParameter <P > parameter , P [] values , Class <P > javaType );
325325
326326 @ 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 );
328328
329329 @ Override
330330 ReactiveNativeQuery <R > setProperties (Object bean );
0 commit comments