Uses of Class
org.hibernate.ScrollMode
-
Packages that use ScrollMode Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.engine.jdbc.spi SPI contracts supporting various aspects of JDBC interaction.org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.sql.exec.internal Implementation of the SPI for execution of SQL statements via JDBC.org.hibernate.sql.exec.spi SPI for execution of SQL statements via JDBC. -
-
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()
A defaultScrollMode
to be used byQuery.scroll()
.ScrollMode
DialectDelegateWrapper. defaultScrollMode()
-
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)
-
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(JdbcOperationQuerySelect 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(JdbcOperationQuerySelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
-