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

org.simpleflatmapper.datastax.impl.setter.IntSettableDataSetter Maven / Gradle / Ivy

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

import com.datastax.driver.core.SettableByIndexData;
import org.simpleflatmapper.reflect.Setter;
import org.simpleflatmapper.reflect.primitive.IntSetter;

public class IntSettableDataSetter implements Setter, IntSetter {
    private final int index;

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

    @Override
    public void setInt(SettableByIndexData target, int value) throws Exception {
        target.setInt(index, value);
    }

    @Override
    public void set(SettableByIndexData target, Integer value) throws Exception {
        if (value == null) {
            target.setToNull(index);
        } else {
            target.setInt(index, value);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy