Annotation Type ValueColumn


@Target(METHOD) @Retention(RUNTIME) public @interface 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();