Interface RowSetter<T>

All Known Subinterfaces:
DynamicTableWriter.PermissiveRowSetter<T>

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()