Package org.modelmapper.spi
Interface NamingConvention
-
public interface NamingConvention
Determines which properties are eligible for matching based on their name.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
applies(String propertyName, PropertyType propertyType)
Returns true if the naming convention applies to thepropertyName
andpropertyType
, else returns false.
-
-
-
Method Detail
-
applies
boolean applies(String propertyName, PropertyType propertyType)
Returns true if the naming convention applies to thepropertyName
andpropertyType
, else returns false.
-
-