Uses of Interface
com.speedment.common.codegen.Transform
-
Packages that use Transform Package Description com.speedment.common.codegen The main interfaces of the codegen library are located in this package.com.speedment.common.codegen.provider This package contains provider classes. -
-
Uses of Transform in com.speedment.common.codegen
Methods in com.speedment.common.codegen with type parameters of type Transform Modifier and Type Method Description <A,T extends Transform<A,?>>
Set<Map.Entry<Class<?>,T>>TransformFactory. allFrom(Class<A> from)Builds a stream of all transforms that match the specified model.<A,B,T extends Transform<A,B>>
TransformFactoryTransformFactory. install(Class<A> from, Class<B> to, Supplier<T> transformer)Installs the specifiedTransform.default <A,T extends Transform<A,String>>
TransformFactoryTransformFactory. install(Class<A> from, Supplier<T> transformer)Installs the specifiedTransform, assuming that the resulting class is a String.Methods in com.speedment.common.codegen that return Transform Modifier and Type Method Description Transform<A,B>Meta. getTransform()The transform that was used to produce the result.Methods in com.speedment.common.codegen with parameters of type Transform Modifier and Type Method Description <A,B>
Optional<Meta<A,B>>Generator. transform(Transform<A,B> transform, A model, TransformFactory factory)Transforms the specified model using the specifiedTransformfrom the specifiedTransformFactory.Meta.Builder<A,B>Meta.Builder. withTransform(Transform<A,B> transform)The transform that was used to produce the result.Method parameters in com.speedment.common.codegen with type arguments of type Transform Modifier and Type Method Description default booleanTransform. is(Class<? extends Transform<?,?>> transformer)Returns true if this transform is or contains the specified transformer. -
Uses of Transform in com.speedment.common.codegen.provider
Methods in com.speedment.common.codegen.provider with type parameters of type Transform Modifier and Type Method Description <A,T extends Transform<A,?>>
Set<Map.Entry<Class<?>,T>>StandardTransformFactory. allFrom(Class<A> model)<A,B,T extends Transform<A,B>>
TransformFactoryStandardTransformFactory. install(Class<A> from, Class<B> to, Supplier<T> transform)Methods in com.speedment.common.codegen.provider with parameters of type Transform Modifier and Type Method Description <A,B>
Optional<Meta<A,B>>StandardGenerator. transform(Transform<A,B> transform, A model, TransformFactory factory)<A,B>
Optional<Meta<A,B>>StandardJavaGenerator. transform(Transform<A,B> transform, A model, TransformFactory factory)
-