Uses of Enum Class
org.hibernate.ScrollMode
Packages that use ScrollMode
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory
, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session
and StatelessSession
,
the most important APIs exposing persistence-related operations for
entities.This package abstracts over the multifarious dialects of SQL
understood by the databases supported by Hibernate.
SPI contracts supporting various aspects of JDBC interaction.
Defines the internal implementation of the stored procedure SPI.
Everything related to HQL/JPQL, native SQL, and criteria queries.
Contains a range of internal abstractions for dealing with query execution,
query plans, query options, and query parameters.
Implementation of the SPIs for native SQL query support.
Package for the SQM-backed Query implementation details
SPI-level SQM contracts
Implementation of the SPI for execution of SQL statements via JDBC.
SPI for execution of SQL statements via JDBC.
-
Uses of ScrollMode in org.hibernate
Methods in org.hibernate that return ScrollModeModifier and TypeMethodDescriptionstatic ScrollMode
Returns the enum constant of this class with the specified name.static ScrollMode[]
ScrollMode.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.hibernate with parameters of type ScrollModeModifier and TypeMethodDescriptionboolean
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 ScrollModeModifier and TypeMethodDescriptionDialect.defaultScrollMode()
A defaultScrollMode
to be used byQuery.scroll()
.DialectDelegateWrapper.defaultScrollMode()
HANADialect.defaultScrollMode()
-
Uses of ScrollMode in org.hibernate.engine.jdbc.spi
Methods in org.hibernate.engine.jdbc.spi with parameters of type ScrollModeModifier and TypeMethodDescriptionStatementPreparer.prepareQueryStatement
(String sql, boolean isCallable, @Nullable 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 ScrollModeModifier and TypeMethodDescriptionprotected ScrollableResultsImplementor<R>
ProcedureCallImpl.doScroll
(ScrollMode scrollMode) ProcedureCallImpl.scroll
(ScrollMode scrollMode) -
Uses of ScrollMode in org.hibernate.query
Methods in org.hibernate.query with parameters of type ScrollModeModifier and TypeMethodDescriptionQuery.scroll
(ScrollMode scrollMode) Execute the query and return the results in a scrollable form.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 ScrollModeModifier and TypeMethodDescriptionprotected abstract ScrollableResultsImplementor<R>
AbstractSelectionQuery.doScroll
(ScrollMode scrollMode) SelectQueryPlan.performScroll
(ScrollMode scrollMode, DomainQueryExecutionContext executionContext) Perform (execute) the query returning a ScrollableResultsAbstractSelectionQuery.scroll
(ScrollMode scrollMode) QueryImplementor.scroll
(ScrollMode scrollMode) -
Uses of ScrollMode in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal with parameters of type ScrollModeModifier and TypeMethodDescriptionprotected ScrollableResultsImplementor<R>
NativeQueryImpl.doScroll
(ScrollMode scrollMode) 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 ScrollModeModifier and TypeMethodDescriptionprotected ScrollableResultsImplementor<R>
QuerySqmImpl.doScroll
(ScrollMode scrollMode) protected ScrollableResultsImplementor<R>
SqmSelectionQueryImpl.doScroll
(ScrollMode scrollMode) AggregatedSelectQueryPlanImpl.performScroll
(ScrollMode scrollMode, DomainQueryExecutionContext executionContext) ConcreteSqmSelectQueryPlan.performScroll
(ScrollMode scrollMode, DomainQueryExecutionContext executionContext) -
Uses of ScrollMode in org.hibernate.query.sqm.spi
Methods in org.hibernate.query.sqm.spi with parameters of type ScrollModeModifier and TypeMethodDescriptionDelegatingSqmSelectionQueryImplementor.scroll
(ScrollMode scrollMode) -
Uses of ScrollMode in org.hibernate.sql.exec.internal
Methods in org.hibernate.sql.exec.internal with parameters of type ScrollModeModifier and TypeMethodDescriptionStandardStatementCreator.getStatementCreator
(@Nullable ScrollMode scrollMode) -
Uses of ScrollMode in org.hibernate.sql.exec.spi
Methods in org.hibernate.sql.exec.spi with parameters of type ScrollModeModifier and TypeMethodDescriptiondefault <R> ScrollableResultsImplementor<R>
JdbcSelectExecutor.scroll
(JdbcOperationQuerySelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer) default <R> ScrollableResultsImplementor<R>
JdbcSelectExecutor.scroll
(JdbcOperationQuerySelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, int resultCountEstimate)