Package org.jdbi.v3.sqlobject.config
Annotation Type ValueColumn
Configures the column to use for map values, for SQL methods that return 
Map, or Guava's Multimap.
 Example:
 @SqlQuery("select key, value from config")
 @KeyColumn("key")
 @ValueColumn("value")
 Map<String, String> getConfigs();
 - 
Required Element Summary
Required Elements 
- 
Element Details
- 
value
String valueReturns the column name to use for map values.- Returns:
 - the column name to use for map values.
 
 
 -