Interface ImportDataNormalizer
- All Known Implementing Classes:
BooleanNormalizer
,UTCDateNormalizer
public interface ImportDataNormalizer
This interface is used for building a data normalizer, which can be used to pre-process the data
from the file before creating the
BatchRecord
.- Author:
- Dima Myroniuk (dmyroniuk)
-
Method Summary
Modifier and TypeMethodDescriptionThe list of header names to normalize.void
Normalizes data under certain headers fromgetHeaderNamesToNormalize()
.
-
Method Details
-
getHeaderNamesToNormalize
The list of header names to normalize. This list is used to retrieve the value from the row map.- Returns:
- the list of header names to normalize
-
normalize
Normalizes data under certain headers fromgetHeaderNamesToNormalize()
.- Parameters:
row
- the row of data parsed out from the file
-