Interface FieldDataProvider


public interface FieldDataProvider
Provider of the row data.
Author:
Roman Rokytskyy
  • Method Summary

    Modifier and Type
    Method
    Description
    byte @Nullable []
    Get raw content of the filed.
    void
    setFieldData(byte @Nullable [] data)
    Set raw content of the field.
  • Method Details

    • getFieldData

      byte @Nullable [] getFieldData()
      Get raw content of the filed. This method returns the array of bytes sent by the server back.
      Returns:
      contents of the field or null if NULL value was sent from the server.
    • setFieldData

      void setFieldData(byte @Nullable [] data)
      Set raw content of the field.
      Parameters:
      data - raw content of the field.