org.simpleflatmapper.map.getter.BoxedFloatContextualGetter 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.
package org.simpleflatmapper.map.getter;
import org.simpleflatmapper.converter.Context;
public class BoxedFloatContextualGetter implements FloatContextualGetter, ContextualGetter {
private final ContextualGetter super T, ? extends Float> delegate;
public BoxedFloatContextualGetter(ContextualGetter super T, ? extends Float> delegate) {
this.delegate = delegate;
}
@Override
public float getFloat(T target, Context mappingContext) throws Exception {
final Float value = get(target, mappingContext);
if (value != null) {
return value.floatValue();
}
return 0;
}
@Override
public Float get(T target, Context context) throws Exception {
return delegate.get(target, context);
}
}