Uses of Interface
org.hibernate.procedure.spi.ProcedureCallImplementor
-
Packages that use ProcedureCallImplementor Package Description org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.procedure.spi -
-
Uses of ProcedureCallImplementor in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement ProcedureCallImplementor Modifier and Type Class Description class
ProcedureCallImpl<R>
Standard implementation ofProcedureCall
Methods in org.hibernate.procedure.internal that return ProcedureCallImplementor Modifier and Type Method Description ProcedureCallImplementor<R>
ProcedureCallImpl. addSynchronizedEntityClass(Class entityClass)
ProcedureCallImplementor<R>
ProcedureCallImpl. addSynchronizedEntityName(String entityName)
ProcedureCallImplementor<R>
ProcedureCallImpl. addSynchronizedQuerySpace(String querySpace)
ProcedureCallImplementor<?>
NamedCallableQueryMementoImpl. makeProcedureCall(SharedSessionContractImplementor session)
ProcedureCallImplementor<R>
ProcedureCallImpl. registerStoredProcedureParameter(int position, Class type, jakarta.persistence.ParameterMode mode)
ProcedureCallImplementor<R>
ProcedureCallImpl. registerStoredProcedureParameter(int position, BasicTypeReference<?> type, jakarta.persistence.ParameterMode mode)
ProcedureCallImplementor<R>
ProcedureCallImpl. registerStoredProcedureParameter(String parameterName, Class type, jakarta.persistence.ParameterMode mode)
ProcedureCallImplementor<R>
ProcedureCallImpl. registerStoredProcedureParameter(String parameterName, BasicTypeReference<?> type, jakarta.persistence.ParameterMode mode)
ProcedureCallImplementor<R>
ProcedureCallImpl. setFlushMode(jakarta.persistence.FlushModeType flushModeType)
ProcedureCallImplementor<R>
ProcedureCallImpl. setHint(String hintName, Object value)
ProcedureCallImplementor<R>
ProcedureCallImpl. setLockMode(jakarta.persistence.LockModeType lockMode)
ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(int position, Object value)
ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalPrecision)
ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(int position, Date value, jakarta.persistence.TemporalType temporalPrecision)
<P> ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(int position, P value, BindableType<P> type)
ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(jakarta.persistence.Parameter<Calendar> parameter, Calendar value, jakarta.persistence.TemporalType temporalPrecision)
ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(jakarta.persistence.Parameter<Date> parameter, Date value, jakarta.persistence.TemporalType temporalPrecision)
<P> ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(jakarta.persistence.Parameter<P> parameter, P value)
ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(String name, Object value)
ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalPrecision)
ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(String name, Date value, jakarta.persistence.TemporalType temporalPrecision)
<P> ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(String name, P value, BindableType<P> type)
<P> ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(QueryParameter<P> parameter, P value)
<P> ProcedureCallImplementor<R>
ProcedureCallImpl. setParameter(QueryParameter<P> parameter, P value, BindableType<P> type)
<T> ProcedureCallImplementor<T>
NamedCallableQueryMementoImpl. toQuery(SharedSessionContractImplementor session, Class<T> javaType)
Methods in org.hibernate.procedure.internal with parameters of type ProcedureCallImplementor Modifier and Type Method Description JdbcCall
PostgresCallableStatementSupport. interpretCall(ProcedureCallImplementor<?> procedureCall)
JdbcCall
StandardCallableStatementSupport. interpretCall(ProcedureCallImplementor<?> procedureCall)
JdbcCallParameterRegistration
ProcedureParameterImpl. toJdbcParameterRegistration(int startIndex, ProcedureCallImplementor<?> procedureCall)
Constructors in org.hibernate.procedure.internal with parameters of type ProcedureCallImplementor Constructor Description FunctionReturnImpl(ProcedureCallImplementor<T> procedureCall, int jdbcTypeCode)
FunctionReturnImpl(ProcedureCallImplementor<T> procedureCall, OutputableType<T> ormType)
-
Uses of ProcedureCallImplementor in org.hibernate.procedure.spi
Methods in org.hibernate.procedure.spi that return ProcedureCallImplementor Modifier and Type Method Description ProcedureCallImplementor<R>
ProcedureCallImplementor. registerStoredProcedureParameter(int position, Class type, jakarta.persistence.ParameterMode mode)
ProcedureCallImplementor<R>
ProcedureCallImplementor. registerStoredProcedureParameter(int position, BasicTypeReference<?> type, jakarta.persistence.ParameterMode mode)
ProcedureCallImplementor<R>
ProcedureCallImplementor. registerStoredProcedureParameter(String parameterName, Class type, jakarta.persistence.ParameterMode mode)
ProcedureCallImplementor<R>
ProcedureCallImplementor. registerStoredProcedureParameter(String parameterName, BasicTypeReference<?> type, jakarta.persistence.ParameterMode mode)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setFlushMode(jakarta.persistence.FlushModeType flushMode)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setHint(String hintName, Object value)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(int position, Object value)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)
<T> ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(jakarta.persistence.Parameter<T> param, T value)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(String name, Object value)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)
ProcedureCallImplementor<R>
ProcedureCallImplementor. setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType)
Methods in org.hibernate.procedure.spi with parameters of type ProcedureCallImplementor Modifier and Type Method Description JdbcCall
CallableStatementSupport. interpretCall(ProcedureCallImplementor<?> procedureCall)
default JdbcCallParameterRegistration
FunctionReturnImplementor. toJdbcParameterRegistration(int startIndex, ProcedureCallImplementor<?> procedureCall)
JdbcCallParameterRegistration
ProcedureParameterImplementor. toJdbcParameterRegistration(int startIndex, ProcedureCallImplementor<?> procedureCall)
-