com.clickzetta.platform.catalyst.data.DataSetters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.platform.catalyst.data;
import java.math.BigDecimal;
public interface DataSetters {
void setNullAt(int pos);
void setBoolean(int pos, boolean value);
void setByte(int pos, byte value);
void setShort(int pos, short value);
void setInt(int pos, int value);
void setLong(int pos, long value);
void setFloat(int pos, float value);
void setDouble(int pos, double value);
void setDecimal(int pos, BigDecimal value, int precision);
void setTimestamp(int pos, Timestamp value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy