Package org.hibernate.result.internal
Class OutputsImpl.CurrentReturnState
- java.lang.Object
-
- org.hibernate.result.internal.OutputsImpl.CurrentReturnState
-
- Direct Known Subclasses:
ProcedureOutputsImpl.ProcedureCurrentReturnState
- Enclosing class:
- OutputsImpl
protected class OutputsImpl.CurrentReturnState extends Object
Encapsulates the information needed to interpret the current return within a result
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCurrentReturnState(boolean isResultSet, int updateCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected OutputbuildExtendedReturn()protected OutputbuildFunctionReturn()protected OutputbuildOutput()protected OutputbuildResultSetOutput(Supplier<List<?>> listSupplier)protected OutputbuildResultSetOutput(List<?> list)protected OutputbuildUpdateCountOutput(int updateCount)OutputgetOutput()intgetUpdateCount()protected booleanhasExtendedReturns()protected booleanhasFunctionReturns()booleanindicatesMoreOutputs()booleanisResultSet()
-
-
-
Method Detail
-
indicatesMoreOutputs
public boolean indicatesMoreOutputs()
-
isResultSet
public boolean isResultSet()
-
getUpdateCount
public int getUpdateCount()
-
getOutput
public Output getOutput()
-
buildOutput
protected Output buildOutput()
-
buildUpdateCountOutput
protected Output buildUpdateCountOutput(int updateCount)
-
hasExtendedReturns
protected boolean hasExtendedReturns()
-
buildExtendedReturn
protected Output buildExtendedReturn()
-
hasFunctionReturns
protected boolean hasFunctionReturns()
-
buildFunctionReturn
protected Output buildFunctionReturn()
-
-