Interface RawValuesSource
- All Known Implementing Classes:
ImportedDataItem
,ImportedObject
public interface RawValuesSource
Interface for source of extracted raw values
-
Method Summary
Modifier and TypeMethodDescriptionaddRawValue
(String dataFieldName, Object rawValue) Adds a raw value of specified data fieldgetRawValue
(String dataFieldName) Gets a raw value of the specified data fieldvoid
setRawValues
(Map<String, Object> rawValues) Sets a map containing raw values of data fields.
-
Method Details
-
getRawValues
- Returns:
- map that contains raw values by data field names
-
setRawValues
Sets a map containing raw values of data fields.- Parameters:
rawValues
- map with raw values
-
addRawValue
Adds a raw value of specified data field- Parameters:
dataFieldName
- data field namerawValue
- raw value- Returns:
- current instance of raw values source
-
getRawValue
Gets a raw value of the specified data field- Parameters:
dataFieldName
- data field name- Returns:
- extracted raw value
-