Package org.hibernate.engine.spi
Class RowSelection
- java.lang.Object
-
- org.hibernate.engine.spi.RowSelection
-
-
Constructor Summary
Constructors Constructor Description RowSelection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleandefinesLimits()IntegergetFetchSize()IntegergetFirstRow()IntegergetMaxRows()IntegergetTimeout()voidsetFetchSize(int fetchSize)voidsetFetchSize(Integer fetchSize)voidsetFirstRow(int firstRow)voidsetFirstRow(Integer firstRow)voidsetMaxRows(int maxRows)voidsetMaxRows(Integer maxRows)voidsetTimeout(int timeout)voidsetTimeout(Integer timeout)
-
-
-
Method Detail
-
setFirstRow
public void setFirstRow(Integer firstRow)
-
setFirstRow
public void setFirstRow(int firstRow)
-
getFirstRow
public Integer getFirstRow()
-
setMaxRows
public void setMaxRows(Integer maxRows)
-
setMaxRows
public void setMaxRows(int maxRows)
-
getMaxRows
public Integer getMaxRows()
-
setTimeout
public void setTimeout(Integer timeout)
-
setTimeout
public void setTimeout(int timeout)
-
getTimeout
public Integer getTimeout()
-
getFetchSize
public Integer getFetchSize()
-
setFetchSize
public void setFetchSize(Integer fetchSize)
-
setFetchSize
public void setFetchSize(int fetchSize)
-
definesLimits
public boolean definesLimits()
-
-