Interface SqlEntryConverter<K,V>
-
public interface SqlEntryConverter<K,V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KgetKey(ResultSet resultSet)String[]getKeyColumnDefinitions()String[]getKeyColumns()VgetValue(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
-
-