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

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

package org.simpleflatmapper.reflect.getter;

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

public class ConstantByteGetter implements ByteGetter, Getter {
    private final byte value;

    public ConstantByteGetter(byte value) {
        this.value = value;
    }

    @Override
    public byte getByte(T target) {
        return value;
    }

    @Override
    public Byte get(T target) {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy