Skip to content

Commit 9404a8a

Browse files
committed
Polishing
1 parent ee2fe1d commit 9404a8a

File tree

1 file changed

+5
-5
lines changed
  • spring-jdbc/src/main/java/org/springframework/jdbc/support/rowset

1 file changed

+5
-5
lines changed

spring-jdbc/src/main/java/org/springframework/jdbc/support/rowset/SqlRowSet.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -219,8 +219,8 @@ public interface SqlRowSet extends Serializable {
219219
* (for NCHAR, NVARCHAR, LONGNVARCHAR columns).
220220
* @param columnIndex the column index
221221
* @return a String representing the column value
222-
* @see java.sql.ResultSet#getNString(int)
223222
* @since 4.1.3
223+
* @see java.sql.ResultSet#getNString(int)
224224
*/
225225
String getNString(int columnIndex) throws InvalidResultSetAccessException;
226226

@@ -229,8 +229,8 @@ public interface SqlRowSet extends Serializable {
229229
* (for NCHAR, NVARCHAR, LONGNVARCHAR columns).
230230
* @param columnLabel the column label
231231
* @return a String representing the column value
232-
* @see java.sql.ResultSet#getNString(String)
233232
* @since 4.1.3
233+
* @see java.sql.ResultSet#getNString(String)
234234
*/
235235
String getNString(String columnLabel) throws InvalidResultSetAccessException;
236236

@@ -273,8 +273,8 @@ public interface SqlRowSet extends Serializable {
273273
* @param columnIndex the column index
274274
* @param type the Java type to convert the designated column to
275275
* @return a Object representing the column value
276-
* @see java.sql.ResultSet#getObject(int)
277276
* @since 4.1.3
277+
* @see java.sql.ResultSet#getObject(int, Class)
278278
*/
279279
<T> T getObject(int columnIndex, Class<T> type) throws InvalidResultSetAccessException;
280280

@@ -283,8 +283,8 @@ public interface SqlRowSet extends Serializable {
283283
* @param columnLabel the column label
284284
* @param type the Java type to convert the designated column to
285285
* @return a Object representing the column value
286-
* @see java.sql.ResultSet#getObject(int)
287286
* @since 4.1.3
287+
* @see java.sql.ResultSet#getObject(String, Class)
288288
*/
289289
<T> T getObject(String columnLabel, Class<T> type) throws InvalidResultSetAccessException;
290290

0 commit comments

Comments
 (0)