Package oracle.webcenter.search.util
Class ResultSetRow
java.lang.Object
oracle.webcenter.search.util.ResultSetRow
- All Implemented Interfaces:
Row
A utility class that constructs a Row implementation by wrapping a ResultSet
and consuming its column values in a "snapshot" way.
- Since:
- 11.1.1.0.0 Beta 2
-
Constructor Summary
ConstructorsConstructorDescriptionResultSetRow
(ResultSet resultSet) Construct a ResultSetRow with a ResultSet to be wrapped.ResultSetRow
(Map<QName, String> columnMap, ResultSet resultSet) Construct a ResultSetRow with a map of columns and a ResultSet to be wrapped. -
Method Summary
Modifier and TypeMethodDescriptionGets the list of column names derived from combining the ResultSet columns and the list of columns declared by the constructor parameter.Looks up into the stored "snapshot" of the column data to return a row representation for.
-
Constructor Details
-
ResultSetRow
Construct a ResultSetRow with a ResultSet to be wrapped.- Parameters:
resultSet
- a wrapped ResultSet- Throws:
SearchException
-
ResultSetRow
Construct a ResultSetRow with a map of columns and a ResultSet to be wrapped.- Parameters:
columnMap
- a map of columns from QName to column nameresultSet
- a wrapped ResultSet- Throws:
SearchException
-
-
Method Details
-
getColumns
Gets the list of column names derived from combining the ResultSet columns and the list of columns declared by the constructor parameter.- Specified by:
getColumns
in interfaceRow
- Returns:
- an Iterator of QName objects each corresponding to a column name.
- See Also:
-
getObject
Looks up into the stored "snapshot" of the column data to return a row representation for.
-