org.sfm.datastax.impl.setter.BigIntegerSettableDataSetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-datastax Show documentation
Show all versions of sfm-datastax Show documentation
Cassandra Datastax SFM supports.
package org.sfm.datastax.impl.setter;
import com.datastax.driver.core.SettableByIndexData;
import org.sfm.reflect.Setter;
import java.math.BigInteger;
public class BigIntegerSettableDataSetter implements Setter {
private final int index;
public BigIntegerSettableDataSetter(int index) {
this.index = index;
}
@Override
public void set(SettableByIndexData target, BigInteger value) throws Exception {
if (value == null) {
target.setToNull(index);
} else {
target.setVarint(index, value);
}
}
}