Uses of Interface
org.jdbi.v3.core.collector.CollectorFactory
Package
Description
The
collector
package reduces the mapped rows of the result set
into a Stream Collector to produce the final aggregated result.
The
config
classes define a configuration registry starting from
each Jdbi
instance.guava
provides extra types that are commonly needed beyond built
in JDK types.-
Uses of CollectorFactory in org.jdbi.v3.core.collector
Modifier and TypeClassDescriptionclass
Deprecated.will be replaced by pluginModifier and TypeMethodDescriptionstatic CollectorFactory
CollectorFactory.collectorFactory
(Type containerType, Collector<?, ?, ?> collector) Creates aCollectorFactory
from a container type and a collector.static CollectorFactory
CollectorFactory.collectorFactory
(GenericType<?> containerType, Collector<?, ?, ?> collector) Creates aCollectorFactory
from a parameterized container type and a collector.Modifier and TypeMethodDescriptionJdbiCollectors.register
(CollectorFactory factory) Register a newCollectorFactory
. -
Uses of CollectorFactory in org.jdbi.v3.core.config
Modifier and TypeMethodDescriptiondefault This
Configurable.registerCollector
(CollectorFactory factory) Convenience method forgetConfig(JdbiCollectors.class).register(factory)
-
Uses of CollectorFactory in org.jdbi.v3.guava
Modifier and TypeMethodDescriptionstatic CollectorFactory
GuavaCollectors.factory()
Returns aCollectorFactory
which knows how to create all supported Guava types.