Package org.jdbi.v3.core.result
Class RowView
java.lang.Object
org.jdbi.v3.core.result.RowView
A RowView is an accessor for 
ResultSet that uses
 RowMapper or ColumnMapper to extract values.
 It is not valid outside the scope of the method that receives it.- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescription<T> TUse a column mapper to extract a type from the current ResultSet row.Use a column mapper to extract a type from the current ResultSet row.<T> TgetColumn(int column, GenericType<T> type) Use a column mapper to extract a type from the current ResultSet row.abstract <T> TgetColumn(int column, QualifiedType<T> type) Use a qualified column mapper to extract a type from the current ResultSet row.<T> TUse a column mapper to extract a type from the current ResultSet row.Use a column mapper to extract a type from the current ResultSet row.<T> TgetColumn(String column, GenericType<T> type) Use a column mapper to extract a type from the current ResultSet row.abstract <T> TgetColumn(String column, QualifiedType<T> type) Use a qualified column mapper to extract a type from the current ResultSet row.<T> TUse a row mapper to extract a type from the current ResultSet row.abstract ObjectUse a row mapper to extract a type from the current ResultSet row.<T> TgetRow(GenericType<T> rowType) Use a row mapper to extract a type from the current ResultSet row.
- 
Constructor Details- 
RowViewpublic RowView()
 
- 
- 
Method Details- 
getRowUse a row mapper to extract a type from the current ResultSet row.- Type Parameters:
- T- the type to map
- Parameters:
- rowType- the Class of the type
- Returns:
- the materialized T
 
- 
getRowUse a row mapper to extract a type from the current ResultSet row.- Type Parameters:
- T- the type to map
- Parameters:
- rowType- the GenericType of the type
- Returns:
- the materialized T
 
- 
getRowUse a row mapper to extract a type from the current ResultSet row.- Parameters:
- type- the type to map
- Returns:
- the materialized object
 
- 
getColumnUse a column mapper to extract a type from the current ResultSet row.- Type Parameters:
- T- the type to map
- Parameters:
- column- the column name
- type- the Class of the type
- Returns:
- the materialized T
 
- 
getColumnUse a column mapper to extract a type from the current ResultSet row.- Type Parameters:
- T- the type to map
- Parameters:
- column- the column index
- type- the Class of the type
- Returns:
- the materialized T
 
- 
getColumnUse a column mapper to extract a type from the current ResultSet row.- Type Parameters:
- T- the type to map
- Parameters:
- column- the column name
- type- the GenericType of the type
- Returns:
- the materialized T
 
- 
getColumnUse a qualified column mapper to extract a type from the current ResultSet row.- Type Parameters:
- T- the type to map
- Parameters:
- column- the column index
- type- the QualifiedType of the type
- Returns:
- the materialized T
 
- 
getColumnUse a qualified column mapper to extract a type from the current ResultSet row.- Type Parameters:
- T- the type to map
- Parameters:
- column- the column name
- type- the QualifiedType of the type
- Returns:
- the materialized T
 
- 
getColumnUse a column mapper to extract a type from the current ResultSet row.- Type Parameters:
- T- the type to map
- Parameters:
- column- the column index
- type- the GenericType of the type
- Returns:
- the materialized T
 
- 
getColumnUse a column mapper to extract a type from the current ResultSet row.- Parameters:
- column- the column name
- type- the Type of the type
- Returns:
- the materialized object
 
- 
getColumnUse a column mapper to extract a type from the current ResultSet row.- Parameters:
- column- the column name
- type- the Class of the type
- Returns:
- the materialized object
 
 
-