Interface RawValuesSource

All Known Implementing Classes:
ImportedDataItem, ImportedObject

public interface RawValuesSource
Interface for source of extracted raw values
  • Method Details

    • getRawValues

      Map<String,Object> getRawValues()
      Returns:
      map that contains raw values by data field names
    • setRawValues

      void setRawValues(Map<String,Object> rawValues)
      Sets a map containing raw values of data fields.
      Parameters:
      rawValues - map with raw values
    • addRawValue

      RawValuesSource addRawValue(String dataFieldName, @Nullable Object rawValue)
      Adds a raw value of specified data field
      Parameters:
      dataFieldName - data field name
      rawValue - raw value
      Returns:
      current instance of raw values source
    • getRawValue

      @Nullable Object getRawValue(String dataFieldName)
      Gets a raw value of the specified data field
      Parameters:
      dataFieldName - data field name
      Returns:
      extracted raw value