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

org.sfm.datastax.impl.setter.UDTValueSettableDataSetter Maven / Gradle / Ivy

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

import com.datastax.driver.core.SettableByIndexData;
import com.datastax.driver.core.UDTValue;
import org.sfm.reflect.Setter;

public class UDTValueSettableDataSetter implements Setter {
    private final int index;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy