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

org.simpleflatmapper.datastax.impl.getter.DatastaxByteGetter Maven / Gradle / Ivy

There is a newer version: 8.2.3
Show newest version
package org.simpleflatmapper.datastax.impl.getter;

import com.datastax.driver.core.GettableByIndexData;
import org.simpleflatmapper.reflect.Getter;
import org.simpleflatmapper.reflect.primitive.ByteGetter;

public class DatastaxByteGetter implements ByteGetter, Getter {

    private final int index;

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

    @Override
    public Byte get(GettableByIndexData target) throws Exception {
        if (target.isNull(index)) {
            return null;
        }
        return getByte(target);
    }

    @Override
    public byte getByte(GettableByIndexData target) throws Exception {
        return target.getByte(index);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy