All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.simpleflatmapper.map.getter.BoxedIntContextualGetter Maven / Gradle / Ivy

Go to download

Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.

There is a newer version: 9.0.2
Show newest version
package org.simpleflatmapper.map.getter;

import org.simpleflatmapper.converter.Context;

public class BoxedIntContextualGetter implements IntContextualGetter, ContextualGetter {


    private final ContextualGetter delegate;

    public BoxedIntContextualGetter(ContextualGetter delegate) {
        this.delegate = delegate;
    }

    @Override
    public int getInt(T target, Context mappingContext) throws Exception {
        final Integer value = get(target, mappingContext);
        if (value != null) {
            return value.intValue();
        }
        return 0;
    }

    @Override
    public Integer get(T target, Context context) throws Exception {
        return delegate.get(target, context);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy