Uses of Enum Class
org.seasar.doma.MapKeyNamingType
Packages that use MapKeyNamingType
Package
Description
Provides annotations and exceptions.
Internal implementation details for the Doma framework.
Internal implementation details for the Doma framework.
Provides JDBC related interfaces and classes.
Provides classes to build dynamic SQL statements.
-
Uses of MapKeyNamingType in org.seasar.doma
Methods in org.seasar.doma that return MapKeyNamingTypeModifier and TypeMethodDescriptionstatic MapKeyNamingTypeReturns the enum constant of this class with the specified name.static MapKeyNamingType[]MapKeyNamingType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of MapKeyNamingType in org.seasar.doma.internal.jdbc.command
Fields in org.seasar.doma.internal.jdbc.command declared as MapKeyNamingTypeConstructors in org.seasar.doma.internal.jdbc.command with parameters of type MapKeyNamingTypeModifierConstructorDescriptionMapCollectorHandler(MapKeyNamingType mapKeyNamingType, Collector<Map<String, Object>, ?, RESULT> collector) MapIterationHandler(MapKeyNamingType keyNamingType, IterationCallback<Map<String, Object>, RESULT> iterationCallback) MapProvider(Query query, MapKeyNamingType mapKeyNamingType) MapResultListHandler(MapKeyNamingType keyNamingType) MapSingleResultHandler(MapKeyNamingType keyNamingType) MapStreamHandler(MapKeyNamingType keyNamingType, Function<Stream<Map<String, Object>>, RESULT> mapper) OptionalMapSingleResultHandler(MapKeyNamingType keyNamingType) -
Uses of MapKeyNamingType in org.seasar.doma.internal.jdbc.sql
Fields in org.seasar.doma.internal.jdbc.sql declared as MapKeyNamingTypeModifier and TypeFieldDescriptionprotected final MapKeyNamingTypeMapListParameter.mapKeyNamingTypeprotected final MapKeyNamingTypeMapResultListParameter.mapKeyNamingTypeConstructors in org.seasar.doma.internal.jdbc.sql with parameters of type MapKeyNamingTypeModifierConstructorDescriptionMapListParameter(MapKeyNamingType mapKeyNamingType, List<Map<String, Object>> list, String name) MapResultListParameter(MapKeyNamingType mapKeyNamingType) -
Uses of MapKeyNamingType in org.seasar.doma.jdbc
Methods in org.seasar.doma.jdbc with parameters of type MapKeyNamingTypeModifier and TypeMethodDescriptiondefault StringMapKeyNaming.apply(Method method, MapKeyNamingType mapKeyNamingType, String text) Applies the naming convention. -
Uses of MapKeyNamingType in org.seasar.doma.jdbc.builder
Methods in org.seasar.doma.jdbc.builder with parameters of type MapKeyNamingTypeModifier and TypeMethodDescriptionSelectBuilder.getMapResultList(MapKeyNamingType mapKeyNamingType) Executes an SQL SELECT statement and returns the map results.SelectBuilder.getMapSingleResult(MapKeyNamingType mapKeyNamingType) Executes an SQL SELECT statement and returns a single map result.SelectBuilder.getOptionalMapSingleResult(MapKeyNamingType mapKeyNamingType) Executes an SQL SELECT statement and returns a single map result asOptional.SelectBuilder.streamMap(MapKeyNamingType mapKeyNamingType) Executes an SQL SELECT statement and returns the stream of map results.<RESULT> RESULTSelectBuilder.streamMap(MapKeyNamingType mapKeyNamingType, Function<Stream<Map<String, Object>>, RESULT> mapper) Executes an SQL SELECT statement, handles the stream of map values and returns the result.protected <RESULT> RESULTSelectBuilder.streamMapInternal(MapKeyNamingType mapKeyNamingType, Function<Stream<Map<String, Object>>, RESULT> mapper)