Uses of Interface
org.hibernate.procedure.ParameterRegistration
-
Packages that use ParameterRegistration Package Description org.hibernate.procedure org.hibernate.procedure.spi org.hibernate.query.procedure.spi -
-
Uses of ParameterRegistration in org.hibernate.procedure
Methods in org.hibernate.procedure that return ParameterRegistration Modifier and Type Method Description ParameterRegistrationProcedureCall. getParameterRegistration(int position)Retrieve a previously registered parameter memento by the position under which it was registered.ParameterRegistrationProcedureCall. getParameterRegistration(java.lang.String name)Retrieve a previously registered parameter memento by the name under which it was registered.<T> ParameterRegistration<T>ProcedureCall. registerParameter(int position, java.lang.Class<T> type, ParameterMode mode)Basic form for registering a positional parameter.<T> ParameterRegistration<T>ProcedureCall. registerParameter(java.lang.String parameterName, java.lang.Class<T> type, ParameterMode mode)Basic form for registering a named parameter.Methods in org.hibernate.procedure that return types with arguments of type ParameterRegistration Modifier and Type Method Description java.util.List<ParameterRegistration>ProcedureCall. getRegisteredParameters()Retrieve all registered parameters.Methods in org.hibernate.procedure with parameters of type ParameterRegistration Modifier and Type Method Description <T> TProcedureOutputs. getOutputParameterValue(ParameterRegistration<T> parameterRegistration)Retrieve the value of an OUTPUT parameter by the parameter's registration memento. -
Uses of ParameterRegistration in org.hibernate.procedure.spi
Subinterfaces of ParameterRegistration in org.hibernate.procedure.spi Modifier and Type Interface Description interfaceParameterRegistrationImplementor<T>Additional internal contract for ParameterRegistration -
Uses of ParameterRegistration in org.hibernate.query.procedure.spi
Subinterfaces of ParameterRegistration in org.hibernate.query.procedure.spi Modifier and Type Interface Description interfaceProcedureParameterImplementor<T>NOTE: Consider this contract (and its sub-contracts) as incubating as we transition to 6.0 and SQM
-