Interface SqlEntryConverter<K,V>
-
- All Known Subinterfaces:
SqlNumberEntryConverter<K>
public interface SqlEntryConverter<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description K
getKey(ResultSet resultSet)
String[]
getKeyColumnDefinitions()
String[]
getKeyColumns()
V
getValue(ResultSet resultSet)
String[]
getValueColumnDefinitions()
String[]
getValueColumns()
Object[]
toKeyQueryValues(K key)
Object[]
toValueQueryValues(V value)
-
-
-
Method Detail
-
getKeyColumns
String[] getKeyColumns()
-
getValueColumns
String[] getValueColumns()
-
getKeyColumnDefinitions
String[] getKeyColumnDefinitions()
-
getValueColumnDefinitions
String[] getValueColumnDefinitions()
-
getKey
K getKey(ResultSet resultSet) throws SQLException
- Throws:
SQLException
-
getValue
V getValue(ResultSet resultSet) throws SQLException
- Throws:
SQLException
-
-