Uses of Interface
org.hibernate.result.Output
-
Packages that use Output Package Description org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.result Defines support for dealing with database results, accounting for mixed result sets and update counts hiding the complexity of how this is exposed via the JDBC API.org.hibernate.result.internal -
-
Uses of Output in org.hibernate.procedure.internal
Methods in org.hibernate.procedure.internal that return Output Modifier and Type Method Description protected Output
ProcedureOutputsImpl.ProcedureCurrentReturnState. buildExtendedReturn()
protected Output
ProcedureOutputsImpl.ProcedureCurrentReturnState. buildFunctionReturn()
-
Uses of Output in org.hibernate.result
Subinterfaces of Output in org.hibernate.result Modifier and Type Interface Description interface
ResultSetOutput
Models a return that is a result set.interface
UpdateCountOutput
Models a return that is an update count (count of rows affected)Methods in org.hibernate.result that return Output Modifier and Type Method Description Output
Outputs. getCurrent()
Retrieve the current Output object. -
Uses of Output in org.hibernate.result.internal
Methods in org.hibernate.result.internal that return Output Modifier and Type Method Description protected Output
OutputsImpl.CurrentReturnState. buildExtendedReturn()
protected Output
OutputsImpl.CurrentReturnState. buildFunctionReturn()
protected Output
OutputsImpl.CurrentReturnState. buildOutput()
protected Output
OutputsImpl.CurrentReturnState. buildResultSetOutput(Supplier<List<?>> listSupplier)
protected Output
OutputsImpl.CurrentReturnState. buildResultSetOutput(List<?> list)
protected Output
OutputsImpl.CurrentReturnState. buildUpdateCountOutput(int updateCount)
Output
OutputsImpl. getCurrent()
Output
OutputsImpl.CurrentReturnState. getOutput()
-