Uses of Interface
org.hibernate.query.procedure.ProcedureParameter
-
Packages that use ProcedureParameter Package Description org.hibernate.procedure Defines support for executing database stored procedures and functions and accessing its outputs.org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.procedure.spi -
-
Uses of ProcedureParameter in org.hibernate.procedure
Subinterfaces of ProcedureParameter in org.hibernate.procedure Modifier and Type Interface Description interface
FunctionReturn<T>
Describes the function return for ProcedureCalls that represent calls to a function ("{? = call ...}
syntax) rather that a proc ({call ...}
syntax)Methods in org.hibernate.procedure that return ProcedureParameter Modifier and Type Method Description ProcedureParameter
ProcedureCall. getParameterRegistration(int position)
Retrieve a previously registered parameter memento by the position under which it was registered.ProcedureParameter
ProcedureCall. getParameterRegistration(String name)
Retrieve a previously registered parameter memento by the name under which it was registered.<T> ProcedureParameter<T>
ProcedureCall. registerParameter(int position, Class<T> type, jakarta.persistence.ParameterMode mode)
Basic form for registering a positional parameter.<T> ProcedureParameter<T>
ProcedureCall. registerParameter(int position, BasicTypeReference<T> type, jakarta.persistence.ParameterMode mode)
Basic form for registering a positional parameter.<T> ProcedureParameter<T>
ProcedureCall. registerParameter(String parameterName, Class<T> type, jakarta.persistence.ParameterMode mode)
Basic form for registering a named parameter.<T> ProcedureParameter<T>
ProcedureCall. registerParameter(String parameterName, BasicTypeReference<T> type, jakarta.persistence.ParameterMode mode)
Basic form for registering a named parameter.Methods in org.hibernate.procedure that return types with arguments of type ProcedureParameter Modifier and Type Method Description List<ProcedureParameter>
ProcedureCall. getRegisteredParameters()
Retrieve all registered parameters.Methods in org.hibernate.procedure with parameters of type ProcedureParameter Modifier and Type Method Description <T> T
ProcedureOutputs. getOutputParameterValue(ProcedureParameter<T> parameter)
Retrieve the value of an OUTPUT parameter by the parameter's registration memento. -
Uses of ProcedureParameter in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement ProcedureParameter Modifier and Type Class Description class
FunctionReturnImpl<T>
class
ProcedureParameterImpl<T>
Methods in org.hibernate.procedure.internal that return ProcedureParameter Modifier and Type Method Description <T> ProcedureParameter<T>
ProcedureCallImpl. registerParameter(int position, Class<T> javaType, jakarta.persistence.ParameterMode mode)
<T> ProcedureParameter<T>
ProcedureCallImpl. registerParameter(int position, BasicTypeReference<T> typeReference, jakarta.persistence.ParameterMode mode)
Methods in org.hibernate.procedure.internal with parameters of type ProcedureParameter Modifier and Type Method Description <T> T
ProcedureOutputsImpl. getOutputParameterValue(ProcedureParameter<T> parameter)
-
Uses of ProcedureParameter in org.hibernate.procedure.spi
Subinterfaces of ProcedureParameter in org.hibernate.procedure.spi Modifier and Type Interface Description interface
FunctionReturnImplementor<T>
interface
ProcedureParameterImplementor<T>
SPI extension for ProcedureParameter
-