Package org.modelmapper.spi
Interface PropertyNameInfo
public interface PropertyNameInfo
Encapsulates property name information to be use for determining whether a hierarchy of source
and destination properties match.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the destination properties.Returns transformed name tokens for the destination property.Returns transformed name tokens for the source's declaring class.Returns the source properties.Returns transformed name tokens for the source property.Returns transformed name tokens for each source property type.
-
Method Details
-
getDestinationProperties
List<PropertyInfo> getDestinationProperties()Returns the destination properties. -
getDestinationPropertyTokens
Returns transformed name tokens for the destination property. -
getSourceClassTokens
Tokens getSourceClassTokens()Returns transformed name tokens for the source's declaring class. -
getSourceProperties
List<PropertyInfo> getSourceProperties()Returns the source properties. -
getSourcePropertyTokens
Returns transformed name tokens for the source property. -
getSourcePropertyTypeTokens
Returns transformed name tokens for each source property type.
-