Package com.attivio.sdk.util
Class AdvancedFieldValueMapperWrapper
- java.lang.Object
-
- com.attivio.sdk.util.AdvancedFieldValueMapperWrapper
-
- All Implemented Interfaces:
AdvancedFieldValueMapper
public final class AdvancedFieldValueMapperWrapper extends java.lang.Object implements AdvancedFieldValueMapper
Converts aFieldValueMapper
into aAdvancedFieldValueMapper
.
-
-
Constructor Summary
Constructors Constructor Description AdvancedFieldValueMapperWrapper(FieldValueMapper m)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IngestFieldValue
createMappedValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
Process a single field value and returns the new value.
-
-
-
Constructor Detail
-
AdvancedFieldValueMapperWrapper
public AdvancedFieldValueMapperWrapper(FieldValueMapper m)
-
-
Method Detail
-
createMappedValue
public IngestFieldValue createMappedValue(IngestDocument doc, IngestField f, IngestFieldValue fv)
Description copied from interface:AdvancedFieldValueMapper
Process a single field value and returns the new value.- Specified by:
createMappedValue
in interfaceAdvancedFieldValueMapper
- Parameters:
doc
- the input document being processedf
- the input field being processed.fv
- the value to process.- Returns:
- the new object value or null to not output a value for this input value.
-
-