org.simpleflatmapper.map.fieldmapper.ByteConstantTargetFieldMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-map Show documentation
Show all versions of sfm-map 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.map.fieldmapper;
import org.simpleflatmapper.map.FieldMapper;
import org.simpleflatmapper.map.MappingContext;
import org.simpleflatmapper.map.setter.ByteContextualSetter;
import org.simpleflatmapper.reflect.primitive.ByteGetter;
public final class ByteConstantTargetFieldMapper implements FieldMapper {
private final ByteGetter super S> getter;
private final ByteContextualSetter super T> setter;
public ByteConstantTargetFieldMapper(final ByteGetter super S> getter, final ByteContextualSetter super T> setter) {
this.getter = getter;
this.setter = setter;
}
@Override
public void mapTo(final S source, final T target, MappingContext super S> mappingContext) throws Exception {
setter.setByte(target, getter.getByte(source), mappingContext);
}
@Override
public String toString() {
return "ByteFieldMapper{" +
"getter=" + getter +
", setter=" + setter +
'}';
}
}