diff --git a/jOOQ-website/src/main/resources/manual-2.6.xml b/jOOQ-website/src/main/resources/manual-2.6.xml index 2afe1869a9..38884de142 100644 --- a/jOOQ-website/src/main/resources/manual-2.6.xml +++ b/jOOQ-website/src/main/resources/manual-2.6.xml @@ -5388,11 +5388,14 @@ ResultSet fetchResultSet();]]> Map fetchOneMap(); // Transform your Result object into groups - Map> fetchGroups(Field key); - Map> fetchGroups(Field key, Field value); + Map> fetchGroups(Field key); + Map> fetchGroups(Field key, Field value); + Map> fetchGroups(Field key, Class value); + Map> fetchGroups(Field[] key); + Map> fetchGroups(Field[] key, Class value); // Transform your Records into custom POJOs - List fetchInto(Class type), MappingException; + List fetchInto(Class type); // Transform your records into another table type Result fetchInto(Table table);]]>