Uses of Class
org.anchoranalysis.io.generator.GeneratorBridge
Packages that use GeneratorBridge
Package
Description
Base-classes and utilities for generators, which write different types of objects to the file
system.
-
Uses of GeneratorBridge in org.anchoranalysis.io.generator
Methods in org.anchoranalysis.io.generator that return GeneratorBridgeModifier and TypeMethodDescriptionstatic <S,
T> GeneratorBridge <S, T> GeneratorBridge.createOneToMany
(Generator<T> generator, CheckedFunction<S, Stream<T>, ?> bridge) Creates a bridge that maps ONE-TO-MANY from source to destination (i.e. one or more calls to the generator for each source item)static <S,
T> GeneratorBridge <S, T> GeneratorBridge.createOneToOne
(Generator<T> generator, CheckedFunction<S, T, ?> bridge) Creates a bridge that maps ONE-TO-ONE from source to destination (i.e. one call to the generator for each source item)