Class GlueCursorBasedRowSetImpl
java.lang.Object
com.poscoict.glueframework.dao.vo.GlueCursorBasedRowSetImpl
- All Implemented Interfaces:
GlueCursorBasedRowSet<Object>
,Iterable<Object>
,Collection<Object>
,List<Object>
,SequencedCollection<Object>
GlueCursorBasedRowSet 구현체.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionGlueCursorBasedRowSetImpl
(Connection connection, Statement statement, JdbcTemplate jdbcTemplate, ResultSet rs, ResultSet cntRs) GlueCursorBasedRowSetImpl
(ResultSet rs, ResultSet cntRs) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.boolean
Deprecated.boolean
addAll
(int index, Collection<?> c) Deprecated.boolean
addAll
(Collection<?> c) Deprecated.void
clear()
boolean
boolean
containsAll
(Collection<?> c) get
(int index) Column Definition 정보를 얻는다.boolean
hasNext()
현재 커서 위치에서 다음 Row의 존재 여부를 확인한다.int
boolean
isEmpty()
iterator()
int
listIterator
(int index) next()
현재 커서 위치에서 다음에 존재하는 Row를 얻는다.remove
(int index) boolean
boolean
removeAll
(Collection<?> c) void
reset()
RowSet의 커서 위치를 처음으로 이동시킨다.boolean
retainAll
(Collection<?> c) void
setColumnDefs
(GlueColumnDef[] columnDefs) Column Definition 정보를 설정한다.void
setFetchSize
(int fetchSize) internal use only.void
setJdbcTemplate
(JdbcTemplate jdbcTemplate) internal use only.void
setResource
(Connection conn, Statement stmt) internal use only.void
setRowMapper
(RowMapper<?> rowMapper) internal use only.int
size()
subList
(int fromIndex, int toIndex) Object[]
toArray()
Object[]
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
addFirst, addLast, equals, getFirst, getLast, hashCode, removeFirst, removeLast, replaceAll, reversed, sort, spliterator
-
Field Details
-
columndefs
column definition
-
-
Constructor Details
-
GlueCursorBasedRowSetImpl
- Parameters:
rs
-cntRs
-
-
GlueCursorBasedRowSetImpl
public GlueCursorBasedRowSetImpl(Connection connection, Statement statement, JdbcTemplate jdbcTemplate, ResultSet rs, ResultSet cntRs) - Parameters:
connection
-statement
-jdbcTemplate
-rs
-cntRs
-
-
-
Method Details
-
setResource
internal use only.- Parameters:
conn
-stmt
-
-
setJdbcTemplate
internal use only.- Parameters:
jdbcTemplate
-
-
setRowMapper
internal use only.- Parameters:
rowMapper
-
-
setFetchSize
public void setFetchSize(int fetchSize) internal use only.- Parameters:
fetchSize
-
-
hasNext
public boolean hasNext()Description copied from interface:GlueCursorBasedRowSet
현재 커서 위치에서 다음 Row의 존재 여부를 확인한다.- Specified by:
hasNext
in interfaceGlueCursorBasedRowSet<Object>
- Returns:
- Row가 존재하면 true
-
reset
public void reset()Description copied from interface:GlueCursorBasedRowSet
RowSet의 커서 위치를 처음으로 이동시킨다.- Specified by:
reset
in interfaceGlueCursorBasedRowSet<Object>
-
next
Description copied from interface:GlueCursorBasedRowSet
현재 커서 위치에서 다음에 존재하는 Row를 얻는다.- Specified by:
next
in interfaceGlueCursorBasedRowSet<Object>
- Returns:
- 현재 커서 위치에서 다음에 존재하는 Row
-
add
Deprecated. -
add
Deprecated. -
addAll
Deprecated. -
addAll
Deprecated. -
clear
public void clear() -
contains
-
containsAll
- Specified by:
containsAll
in interfaceCollection<Object>
- Specified by:
containsAll
in interfaceList<Object>
-
get
-
indexOf
-
isEmpty
public boolean isEmpty() -
iterator
-
lastIndexOf
- Specified by:
lastIndexOf
in interfaceList<Object>
-
listIterator
- Specified by:
listIterator
in interfaceList<Object>
-
listIterator
- Specified by:
listIterator
in interfaceList<Object>
-
remove
-
remove
-
removeAll
-
retainAll
-
set
-
size
public int size() -
subList
-
toArray
-
toArray
-
getColumnDefs
Description copied from interface:GlueCursorBasedRowSet
Column Definition 정보를 얻는다.- Specified by:
getColumnDefs
in interfaceGlueCursorBasedRowSet<Object>
- Returns:
- Column Definition Array
-
setColumnDefs
Description copied from interface:GlueCursorBasedRowSet
Column Definition 정보를 설정한다.- Specified by:
setColumnDefs
in interfaceGlueCursorBasedRowSet<Object>
- Parameters:
columnDefs
- GlueColumnDef Array
-