Java org.hibernate ScrollableResults fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate ScrollableResults fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate ScrollableResults.

The text is from its open source code.

Implementation

org.hibernate.ScrollableResults has the following implementations.
Click this link to see all its implementation.

Method

voidbeforeFirst()
Go to a location just before first result, This is the location of the cursor on a newly returned scrollable result.
voidclose()
Release resources immediately.
booleanfirst()
Go to the first result.
Objectget(int i)
Get the ith object in the current row of results, without initializing any other results in the row.
Object[]get()
Get the current row of results.
BigDecimalgetBigDecimal(int col)
Convenience method to read a BigDecimal.
byte[]getBinary(int col)
Convenience method to read a binary (byte[]).
DategetDate(int col)
Convenience method to read a Date.
IntegergetInteger(int col)
Convenience method to read an integer.
LonggetLong(int col)
Convenience method to read a long.
intgetRowNumber()
Get the current position in the results.
StringgetString(int col)
Convenience method to read a string.
TypegetType(int i)
Get the type of the ith column of results.
booleanisLast()
Is this the last result?
booleanlast()
Go to the last result.
booleannext()
Advance to the next result.
booleanprevious()
Retreat to the previous result.
booleanscroll(int positions)
Scroll the specified number of positions from the current position.
booleansetRowNumber(int rowNumber)
Set the current position in the result set.