📄 rowselection.java
字号:
//$Id: RowSelection.java 9299 2006-02-16 22:51:00Z steveebersole $package org.hibernate.engine;/** * Represents a selection of rows in a JDBC <tt>ResultSet</tt> * @author Gavin King */public final class RowSelection { private Integer firstRow; private Integer maxRows; private Integer timeout; private Integer fetchSize; public void setFirstRow(Integer firstRow) { this.firstRow = firstRow; } public Integer getFirstRow() { return firstRow; } public void setMaxRows(Integer maxRows) { this.maxRows = maxRows; } public Integer getMaxRows() { return maxRows; } public void setTimeout(Integer timeout) { this.timeout = timeout; } public Integer getTimeout() { return timeout; } public Integer getFetchSize() { return fetchSize; } public void setFetchSize(Integer fetchSize) { this.fetchSize = fetchSize; } public boolean definesLimits() { return maxRows != null || ( firstRow != null && firstRow.intValue() <= 0 ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -