org.simpleflatmapper.map.getter.BoxedShortContextualGetter 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 BoxedShortContextualGetter implements ShortContextualGetter, ContextualGetter {
private final ContextualGetter super T, ? extends Short> delegate;
public BoxedShortContextualGetter(ContextualGetter super T, ? extends Short> delegate) {
this.delegate = delegate;
}
@Override
public short getShort(T target, Context mappingContext) throws Exception {
final Short value = get(target, mappingContext);
if (value != null) {
return value.shortValue();
}
return 0;
}
@Override
public Short get(T target, Context context) throws Exception {
return delegate.get(target, context);
}
}