Interface PropertyMapping
- All Known Implementing Classes:
- CustomPropertyMapping,- ReferenceMultiFieldPropertyMapping,- ReferencePropertyMapping,- SimplePropertyMapping
public interface PropertyMapping
Property mapping describes how to map a field from input data with entity property.
 
Basically, a property mapping contains the following info:
Basically, a property mapping contains the following info:
- Entity property name: name of the entity property that should be populated by the value
- Data field name: a name of the field that contains a raw value for entity property.
         
 If input data is XLSX or CSV, a name of the field - column header.
 If input data is XML, a name of the field - tag name.
- 
Method SummaryModifier and TypeMethodDescriptionGets a data field name.Gets an entity property name.
- 
Method Details- 
getEntityPropertyNameString getEntityPropertyName()Gets an entity property name.- Returns:
- entity property name
 
- 
getDataFieldNameGets a data field name.- Returns:
- data field name
 
 
-