Interface RowSetter<T>

All Known Subinterfaces:
KeyedRowSetter, Record.RecordSetter<T>
All Known Implementing Classes:
AbstractRowSetter, BinaryRecordV2.BinaryStoreRecordSetter, BinaryRowV2.BinaryStoreRowSetter, BinaryRowV2.FlagSetter, CustomSetterValue

public interface RowSetter<T>
Type-safe interface for setting cell values in individual columns of a row to allow a row to be written.
  • Method Details

    • set

      void set(T value)
    • setBoolean

      void setBoolean(Boolean value)
    • setByte

      void setByte(byte value)
    • setChar

      void setChar(char value)
    • setDouble

      void setDouble(double value)
    • setFloat

      void setFloat(float value)
    • setInt

      void setInt(int value)
    • setLong

      void setLong(long value)
    • setShort

      void setShort(short value)
    • getType

      Class getType()