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

org.simpleflatmapper.datastax.impl.setter.BigDecimalSettableDataSetter 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 java.math.BigDecimal;

public class BigDecimalSettableDataSetter implements Setter {
    private final int index;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy