Package org.hibernate.query.spi
Interface QueryParameterImplementor<T>
-
- All Superinterfaces:
Parameter<T>
,QueryParameter<T>
- All Known Subinterfaces:
FunctionReturnImplementor<T>
,ProcedureParameterImplementor<T>
- All Known Implementing Classes:
AbstractQueryParameter
,FunctionReturnImpl
,JpaCriteriaParameter
,ProcedureParameterImpl
,QueryParameterNamedImpl
,QueryParameterPositionalImpl
,ValueBindJpaCriteriaParameter
public interface QueryParameterImplementor<T> extends QueryParameter<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
applyAnticipatedType(BindableType<?> type)
void
disallowMultiValuedBinding()
NamedQueryMemento.ParameterMemento
toMemento()
-
Methods inherited from interface jakarta.persistence.Parameter
getName, getParameterType, getPosition
-
Methods inherited from interface org.hibernate.query.QueryParameter
allowsMultiValuedBinding, getHibernateType
-
-
-
-
Method Detail
-
disallowMultiValuedBinding
void disallowMultiValuedBinding()
-
applyAnticipatedType
void applyAnticipatedType(BindableType<?> type)
-
toMemento
NamedQueryMemento.ParameterMemento toMemento()
-
-