Package com.attivio.sdk.util
Interface FieldValueMapper
-
- All Superinterfaces:
HasFieldMappingProperty
public interface FieldValueMapper extends HasFieldMappingProperty
Maps a singleIngestFieldValue
to a new field.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IngestFieldValue
createMappedValue(java.lang.String fieldName, IngestFieldValue fv)
Process a singleIngestFieldValue
and return a new value to be placed into the document for this input->output mapping.-
Methods inherited from interface com.attivio.sdk.server.component.configuration.HasFieldMappingProperty
getFieldMapping, setFieldMapping
-
-
-
-
Method Detail
-
createMappedValue
IngestFieldValue createMappedValue(java.lang.String fieldName, IngestFieldValue fv)
Process a singleIngestFieldValue
and return a new value to be placed into the document for this input->output mapping.- Parameters:
fieldName
- The input field name being processed.fv
- The value to process.- Returns:
- the new object value or null to not output a value for this input value.
-
-