Package | Description |
---|---|
org.hibernate |
This package defines the central Hibernate APIs.
|
org.hibernate.dialect |
This package abstracts the SQL dialect of the underlying database.
|
org.hibernate.engine.jdbc.spi |
SPI contracts for supporting various aspects of JDBC interaction
|
org.hibernate.engine.spi | |
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
org.hibernate.loader.criteria |
This package defines the criteria query compiler and loader
|
org.hibernate.loader.plan.exec.internal |
Provides the internal implementations for generating the load query from the LoadPlan and the ResultSet processor.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ScrollMode.lessThan(ScrollMode other)
Determine if
this mode is "less than" the provided mode. |
ScrollableResults |
Query.scroll(ScrollMode scrollMode)
Return the query results as ScrollableResults.
|
ScrollableResults |
Criteria.scroll(ScrollMode scrollMode)
Get the results as an instance of
ScrollableResults based on the
given scroll mode. |
Modifier and Type | Method and Description |
---|---|
ScrollMode |
AbstractHANADialect.defaultScrollMode() |
ScrollMode |
Dialect.defaultScrollMode()
Certain dialects support a subset of ScrollModes.
|
Modifier and Type | Method and Description |
---|---|
PreparedStatement |
StatementPreparer.prepareQueryStatement(String sql,
boolean isCallable,
ScrollMode scrollMode)
Get a prepared statement for use in loading / querying.
|
Modifier and Type | Method and Description |
---|---|
ScrollMode |
QueryParameters.getScrollMode() |
Modifier and Type | Method and Description |
---|---|
ScrollableResults |
SessionDelegatorBaseImpl.scroll(Criteria criteria,
ScrollMode scrollMode) |
ScrollableResults |
SessionImplementor.scroll(Criteria criteria,
ScrollMode scrollMode)
Execute a criteria query
|
void |
QueryParameters.setScrollMode(ScrollMode scrollMode) |
Modifier and Type | Method and Description |
---|---|
ScrollableResults |
SessionImpl.scroll(Criteria criteria,
ScrollMode scrollMode) |
ScrollableResults |
StatelessSessionImpl.scroll(Criteria criteria,
ScrollMode scrollMode) |
ScrollableResults |
SQLQueryImpl.scroll(ScrollMode scrollMode) |
ScrollableResults |
QueryImpl.scroll(ScrollMode scrollMode) |
ScrollableResults |
CriteriaImpl.scroll(ScrollMode scrollMode) |
ScrollableResults |
CriteriaImpl.Subcriteria.scroll(ScrollMode scrollMode) |
Modifier and Type | Method and Description |
---|---|
ScrollableResults |
CriteriaLoader.scroll(SessionImplementor session,
ScrollMode scrollMode) |
Modifier and Type | Method and Description |
---|---|
protected ScrollMode |
AbstractLoadPlanBasedLoader.getScrollMode(boolean scroll,
boolean hasFirstRow,
boolean useLimitOffSet,
QueryParameters queryParameters) |
Copyright © 2001-2017 Red Hat, Inc. All Rights Reserved.