Uses of Interface
org.jdbi.v3.core.collector.CollectorFactory
-
Packages that use CollectorFactory Package Description org.jdbi.v3.core.collector Thecollectorpackage reduces the mapped rows of the result set into a Stream Collector to produce the final aggregated result.org.jdbi.v3.core.config Theconfigclasses define a configuration registry starting from eachJdbiinstance.org.jdbi.v3.guava guavaprovides extra types that are commonly needed beyond built in JDK types.org.jdbi.v3.sqlobject.config Thesqlobject.configpackage defines configuration annotations that modify theJdbiconfiguration used as the context for executing SqlObject methods, such as registering handled types.org.jdbi.v3.vavr vavris a functional programming library for the JVM. -
-
Uses of CollectorFactory in org.jdbi.v3.core.collector
Classes in org.jdbi.v3.core.collector that implement CollectorFactory Modifier and Type Class Description (package private) classArrayCollectorFactoryclassBuiltInCollectorFactoryDeprecated.will be replaced by plugin(package private) classEnumSetCollectorFactory(package private) classListCollectorFactory(package private) classMapCollectorFactory(package private) classOptionalCollectorFactory(package private) classOptionalPrimitiveCollectorFactory(package private) classSetCollectorFactory(package private) classSimpleCollectorFactoryFields in org.jdbi.v3.core.collector with type parameters of type CollectorFactory Modifier and Type Field Description private java.util.List<CollectorFactory>JdbiCollectors. factoriesprivate static java.util.List<CollectorFactory>BuiltInCollectorFactory. FACTORIESDeprecated.private java.util.concurrent.ConcurrentMap<java.lang.reflect.Type,java.util.Optional<CollectorFactory>>JdbiCollectors. factoryCacheMethods in org.jdbi.v3.core.collector that return CollectorFactory Modifier and Type Method Description static CollectorFactoryCollectorFactory. collectorFactory(java.lang.reflect.Type containerType, java.util.stream.Collector<?,?,?> collector)Creates aCollectorFactoryfrom a container type and a collector.static CollectorFactoryCollectorFactory. collectorFactory(GenericType<?> containerType, java.util.stream.Collector<?,?,?> collector)Creates aCollectorFactoryfrom a parameterized container type and a collector.Methods in org.jdbi.v3.core.collector that return types with arguments of type CollectorFactory Modifier and Type Method Description private java.util.Optional<CollectorFactory>JdbiCollectors. findFactoryFor(java.lang.reflect.Type containerType)Methods in org.jdbi.v3.core.collector with parameters of type CollectorFactory Modifier and Type Method Description JdbiCollectorsJdbiCollectors. register(CollectorFactory factory)Register a newCollectorFactory. -
Uses of CollectorFactory in org.jdbi.v3.core.config
Methods in org.jdbi.v3.core.config with parameters of type CollectorFactory Modifier and Type Method Description default ThisConfigurable. registerCollector(CollectorFactory factory)Convenience method forgetConfig(JdbiCollectors.class).register(factory) -
Uses of CollectorFactory in org.jdbi.v3.guava
Classes in org.jdbi.v3.guava that implement CollectorFactory Modifier and Type Class Description private static classGuavaCollectors.FactoryMethods in org.jdbi.v3.guava that return CollectorFactory Modifier and Type Method Description static CollectorFactoryGuavaCollectors. factory()Returns aCollectorFactorywhich knows how to create all supported Guava types. -
Uses of CollectorFactory in org.jdbi.v3.sqlobject.config
Methods in org.jdbi.v3.sqlobject.config that return types with arguments of type CollectorFactory Modifier and Type Method Description java.lang.Class<? extends CollectorFactory>value() -
Uses of CollectorFactory in org.jdbi.v3.vavr
Classes in org.jdbi.v3.vavr that implement CollectorFactory Modifier and Type Class Description (package private) classVavrCollectorFactory
-