Package com.attivio.sdk.util
Interface AdvancedFieldValueModifier
-
public interface AdvancedFieldValueModifier
Modifies a singleIngestFieldValue
in place. Provides more advanced input than theFieldValueModifier
that is required for more complex transformers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
modifyFieldValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
Modify a single field value in place.
-
-
-
Method Detail
-
modifyFieldValue
void modifyFieldValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
Modify a single field value in place.- Parameters:
doc
- the input document being processedf
- the input field being processed.fv
- the value to process.
-
-