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

org.simpleflatmapper.reflect.getter.IndexedBooleanArrayGetter Maven / Gradle / Ivy

package org.simpleflatmapper.reflect.getter;

import org.simpleflatmapper.reflect.Getter;
import org.simpleflatmapper.reflect.primitive.BooleanGetter;

public final class IndexedBooleanArrayGetter implements Getter, BooleanGetter {
    private final int index;

    public IndexedBooleanArrayGetter(int index) {
        this.index = index;
    }

    @Override
    public boolean getBoolean(boolean[] target) throws Exception {
        return target[index];
    }

    @Override
    public Boolean get(boolean[] target) throws Exception {
        return getBoolean(target);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy