Uses of Class
org.hibernate.ScrollMode
-
Packages that use ScrollMode Package Description org.hibernate org.hibernate.dialect org.hibernate.engine.jdbc.spi SPI contracts for supporting various aspects of JDBC interactionorg.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.query org.hibernate.query.spi org.hibernate.query.sql.internal org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.sql.exec.internal org.hibernate.sql.exec.spi -
-
Uses of ScrollMode in org.hibernate
Methods in org.hibernate that return ScrollMode Modifier and Type Method Description static ScrollMode
ScrollMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static ScrollMode[]
ScrollMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate with parameters of type ScrollMode Modifier and Type Method Description boolean
ScrollMode. lessThan(ScrollMode other)
Determine ifthis
mode is "less than" the provided mode. -
Uses of ScrollMode in org.hibernate.dialect
Methods in org.hibernate.dialect that return ScrollMode Modifier and Type Method Description ScrollMode
AbstractHANADialect. defaultScrollMode()
ScrollMode
Dialect. defaultScrollMode()
Certain dialects support a subset of ScrollModes. -
Uses of ScrollMode in org.hibernate.engine.jdbc.spi
Methods in org.hibernate.engine.jdbc.spi with parameters of type ScrollMode Modifier and Type Method Description PreparedStatement
StatementPreparer. prepareQueryStatement(String sql, boolean isCallable, ScrollMode scrollMode)
Get a prepared statement for use in loading / querying. -
Uses of ScrollMode in org.hibernate.procedure.internal
Methods in org.hibernate.procedure.internal with parameters of type ScrollMode Modifier and Type Method Description protected ScrollableResultsImplementor<R>
ProcedureCallImpl. doScroll(ScrollMode scrollMode)
ScrollableResultsImplementor<R>
ProcedureCallImpl. scroll(ScrollMode scrollMode)
-
Uses of ScrollMode in org.hibernate.query
Methods in org.hibernate.query with parameters of type ScrollMode Modifier and Type Method Description ScrollableResults<R>
Query. scroll(ScrollMode scrollMode)
Execute the query and return the results in a scrollable form.ScrollableResults<R>
SelectionQuery. scroll(ScrollMode scrollMode)
Returns scrollable access to the query results. -
Uses of ScrollMode in org.hibernate.query.spi
Methods in org.hibernate.query.spi with parameters of type ScrollMode Modifier and Type Method Description protected abstract ScrollableResultsImplementor<R>
AbstractSelectionQuery. doScroll(ScrollMode scrollMode)
ScrollableResultsImplementor<R>
SelectQueryPlan. performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
Perform (execute) the query returning a ScrollableResultsScrollableResultsImplementor<R>
AbstractSelectionQuery. scroll(ScrollMode scrollMode)
ScrollableResultsImplementor<R>
QueryImplementor. scroll(ScrollMode scrollMode)
-
Uses of ScrollMode in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type ScrollMode Modifier and Type Method Description protected ScrollableResultsImplementor<R>
NativeQueryImpl. doScroll(ScrollMode scrollMode)
ScrollableResultsImplementor<R>
NativeSelectQueryPlanImpl. performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
-
Uses of ScrollMode in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal with parameters of type ScrollMode Modifier and Type Method Description protected ScrollableResultsImplementor
QuerySqmImpl. doScroll(ScrollMode scrollMode)
protected ScrollableResultsImplementor<R>
SqmSelectionQueryImpl. doScroll(ScrollMode scrollMode)
ScrollableResultsImplementor<R>
AggregatedSelectQueryPlanImpl. performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
ScrollableResultsImplementor<R>
ConcreteSqmSelectQueryPlan. performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
ScrollableResultsImplementor<R>
QuerySqmImpl. scroll(ScrollMode scrollMode)
-
Uses of ScrollMode in org.hibernate.sql.exec.internal
Methods in org.hibernate.sql.exec.internal with parameters of type ScrollMode Modifier and Type Method Description <R> ScrollableResultsImplementor<R>
JdbcSelectExecutorStandardImpl. scroll(JdbcSelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
-
Uses of ScrollMode in org.hibernate.sql.exec.spi
Methods in org.hibernate.sql.exec.spi with parameters of type ScrollMode Modifier and Type Method Description <R> ScrollableResultsImplementor<R>
JdbcSelectExecutor. scroll(JdbcSelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
-