Package org.anchoranalysis.io.generator
package org.anchoranalysis.io.generator
Base-classes and utilities for generators, which write different types of objects to the file
system.
-
ClassDescriptionGenerator<T>A class that writes a particular type of object(s) to the filesystem.GeneratorBridge<S,
T> Exposes aGenerator<T>
as if it was anGenerator<S>
.AGenerator
that creates multiple different file-types.ASingleFileTypeGenerator
that does not transform an element before generating.AGenerator
that eventually writes only a single file to the filesystem.Allows us to call anSingleFileTypeGenerator<V,S>
as if it was anSingleFileTypeGenerator<T,S>
using an function to connect the two.Performs preprocessing to transform the element into another type before being written to the filesystem.TransformingGeneratorBridge<S,T, V> Allows us to call anSingleFileTypeGenerator<V,S>
as if it was anSingleFileTypeGenerator<T,S>
using an function to connect the two.