org.simpleflatmapper.converter.ConstantContextualConverterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-converter Show documentation
Show all versions of sfm-converter Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
The newest version!
package org.simpleflatmapper.converter;
public class ConstantContextualConverterFactory extends AbstractContextualConverterFactory {
private final ContextualConverter super I, ? extends O> converter;
public ConstantContextualConverterFactory(ConvertingTypes convertingTypes, ContextualConverter super I, ? extends O> converter) {
super(convertingTypes);
this.converter = converter;
}
@Override
public ContextualConverter super I, ? extends O> newConverter(ConvertingTypes targetedTypes, ContextFactoryBuilder contextFactoryBuilder, Object... params) {
return converter;
}
}