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.query org.hibernate.query.spi org.hibernate.sql.exec.spi -
-
Uses of ScrollMode in org.hibernate
Methods in org.hibernate that return ScrollMode Modifier and Type Method Description static ScrollModeScrollMode. 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 booleanScrollMode. lessThan(ScrollMode other)Determine ifthismode 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 ScrollModeAbstractHANADialect. defaultScrollMode()ScrollModeDialect. 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 PreparedStatementStatementPreparer. prepareQueryStatement(String sql, boolean isCallable, ScrollMode scrollMode)Get a prepared statement for use in loading / querying. -
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)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 ScrollableResultsImplementor<R>SelectQueryPlan. performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)Perform (execute) the query returning a ScrollableResultsScrollableResultsImplementor<R>QueryImplementor. scroll(ScrollMode scrollMode) -
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)
-