提交 9404a8a1 编写于 作者: J Juergen Hoeller

Polishing

上级 ee2fe1de
/* /*
* Copyright 2002-2018 the original author or authors. * Copyright 2002-2019 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -219,8 +219,8 @@ public interface SqlRowSet extends Serializable { ...@@ -219,8 +219,8 @@ public interface SqlRowSet extends Serializable {
* (for NCHAR, NVARCHAR, LONGNVARCHAR columns). * (for NCHAR, NVARCHAR, LONGNVARCHAR columns).
* @param columnIndex the column index * @param columnIndex the column index
* @return a String representing the column value * @return a String representing the column value
* @see java.sql.ResultSet#getNString(int)
* @since 4.1.3 * @since 4.1.3
* @see java.sql.ResultSet#getNString(int)
*/ */
String getNString(int columnIndex) throws InvalidResultSetAccessException; String getNString(int columnIndex) throws InvalidResultSetAccessException;
...@@ -229,8 +229,8 @@ public interface SqlRowSet extends Serializable { ...@@ -229,8 +229,8 @@ public interface SqlRowSet extends Serializable {
* (for NCHAR, NVARCHAR, LONGNVARCHAR columns). * (for NCHAR, NVARCHAR, LONGNVARCHAR columns).
* @param columnLabel the column label * @param columnLabel the column label
* @return a String representing the column value * @return a String representing the column value
* @see java.sql.ResultSet#getNString(String)
* @since 4.1.3 * @since 4.1.3
* @see java.sql.ResultSet#getNString(String)
*/ */
String getNString(String columnLabel) throws InvalidResultSetAccessException; String getNString(String columnLabel) throws InvalidResultSetAccessException;
...@@ -273,8 +273,8 @@ public interface SqlRowSet extends Serializable { ...@@ -273,8 +273,8 @@ public interface SqlRowSet extends Serializable {
* @param columnIndex the column index * @param columnIndex the column index
* @param type the Java type to convert the designated column to * @param type the Java type to convert the designated column to
* @return a Object representing the column value * @return a Object representing the column value
* @see java.sql.ResultSet#getObject(int)
* @since 4.1.3 * @since 4.1.3
* @see java.sql.ResultSet#getObject(int, Class)
*/ */
<T> T getObject(int columnIndex, Class<T> type) throws InvalidResultSetAccessException; <T> T getObject(int columnIndex, Class<T> type) throws InvalidResultSetAccessException;
...@@ -283,8 +283,8 @@ public interface SqlRowSet extends Serializable { ...@@ -283,8 +283,8 @@ public interface SqlRowSet extends Serializable {
* @param columnLabel the column label * @param columnLabel the column label
* @param type the Java type to convert the designated column to * @param type the Java type to convert the designated column to
* @return a Object representing the column value * @return a Object representing the column value
* @see java.sql.ResultSet#getObject(int)
* @since 4.1.3 * @since 4.1.3
* @see java.sql.ResultSet#getObject(String, Class)
*/ */
<T> T getObject(String columnLabel, Class<T> type) throws InvalidResultSetAccessException; <T> T getObject(String columnLabel, Class<T> type) throws InvalidResultSetAccessException;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册