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

org.simpleflatmapper.reflect.primitive.BoxedLongGetter Maven / Gradle / Ivy

package org.simpleflatmapper.reflect.primitive;

import org.simpleflatmapper.reflect.Getter;

public class BoxedLongGetter implements LongGetter, Getter {


    private final Getter delegate;

    public BoxedLongGetter(Getter delegate) {
        this.delegate = delegate;
    }

    @Override
    public long getLong(T target) throws Exception {
        final Long value = get(target);
        if (value != null) {
            return value.longValue();
        }
        return 0;
    }

    @Override
    public Long get(T target) throws Exception {
        return delegate.get(target);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy