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

com.clickzetta.platform.catalyst.data.DataSetters Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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