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

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

package org.simpleflatmapper.reflect.primitive;

import org.simpleflatmapper.reflect.Getter;

public class BoxedBooleanGetter implements BooleanGetter, Getter {


    private final Getter delegate;

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

    @Override
    public boolean getBoolean(T target) throws Exception {
        final Boolean bool = get(target);
        if (bool != null) {
            return bool.booleanValue();
        }
        return false;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy