1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -219,8 +219,8 @@ public interface SqlRowSet extends Serializable {
219
219
* (for NCHAR, NVARCHAR, LONGNVARCHAR columns).
220
220
* @param columnIndex the column index
221
221
* @return a String representing the column value
222
- * @see java.sql.ResultSet#getNString(int)
223
222
* @since 4.1.3
223
+ * @see java.sql.ResultSet#getNString(int)
224
224
*/
225
225
String getNString (int columnIndex ) throws InvalidResultSetAccessException ;
226
226
@@ -229,8 +229,8 @@ public interface SqlRowSet extends Serializable {
229
229
* (for NCHAR, NVARCHAR, LONGNVARCHAR columns).
230
230
* @param columnLabel the column label
231
231
* @return a String representing the column value
232
- * @see java.sql.ResultSet#getNString(String)
233
232
* @since 4.1.3
233
+ * @see java.sql.ResultSet#getNString(String)
234
234
*/
235
235
String getNString (String columnLabel ) throws InvalidResultSetAccessException ;
236
236
@@ -273,8 +273,8 @@ public interface SqlRowSet extends Serializable {
273
273
* @param columnIndex the column index
274
274
* @param type the Java type to convert the designated column to
275
275
* @return a Object representing the column value
276
- * @see java.sql.ResultSet#getObject(int)
277
276
* @since 4.1.3
277
+ * @see java.sql.ResultSet#getObject(int, Class)
278
278
*/
279
279
<T > T getObject (int columnIndex , Class <T > type ) throws InvalidResultSetAccessException ;
280
280
@@ -283,8 +283,8 @@ public interface SqlRowSet extends Serializable {
283
283
* @param columnLabel the column label
284
284
* @param type the Java type to convert the designated column to
285
285
* @return a Object representing the column value
286
- * @see java.sql.ResultSet#getObject(int)
287
286
* @since 4.1.3
287
+ * @see java.sql.ResultSet#getObject(String, Class)
288
288
*/
289
289
<T > T getObject (String columnLabel , Class <T > type ) throws InvalidResultSetAccessException ;
290
290
0 commit comments