org.simpleflatmapper.converter.ConverterToContextualAdapter 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.
package org.simpleflatmapper.converter;
public class ConverterToContextualAdapter implements Converter {
private final ContextFactory contextFactory;
private final ContextualConverter super F, ? extends P> converter;
public ConverterToContextualAdapter(ContextualConverter super F, ? extends P> converter, ContextFactory contextFactory) {
this.converter = converter;
this.contextFactory = contextFactory;
}
@Override
public P convert(F in) throws Exception {
return converter.convert(in, contextFactory.newContext());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy