org.simpleflatmapper.datastax.impl.getter.DatastaxIntegerGetter 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.simpleflatmapper.datastax.impl.getter;
import com.datastax.driver.core.GettableByIndexData;
import org.simpleflatmapper.reflect.Getter;
import org.simpleflatmapper.reflect.primitive.IntGetter;
public class DatastaxIntegerGetter implements IntGetter, Getter {
private final int index;
public DatastaxIntegerGetter(int index) {
this.index = index;
}
@Override
public Integer get(GettableByIndexData target) throws Exception {
if (target.isNull(index)) {
return null;
}
return getInt(target);
}
@Override
public int getInt(GettableByIndexData target) throws Exception {
return target.getInt(index);
}
}