org.simpleflatmapper.map.getter.BoxedByteContextualGetter 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.getter;
import org.simpleflatmapper.converter.Context;
public class BoxedByteContextualGetter implements ByteContextualGetter, ContextualGetter {
private final ContextualGetter super T, ? extends Byte> delegate;
public BoxedByteContextualGetter(ContextualGetter super T, ? extends Byte> delegate) {
this.delegate = delegate;
}
@Override
public byte getByte(T target, Context mappingContext) throws Exception {
final Byte value = get(target, mappingContext);
if (value != null) {
return value.byteValue();
}
return 0;
}
@Override
public Byte get(T target, Context context) throws Exception {
return delegate.get(target, context);
}
}