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
-
Element Details
-
value
String valueReturns the column name to use for map values.- Returns:
- the column name to use for map values.
-