Uses of Interface
org.modelmapper.spi.NamingConvention
-
Packages that use NamingConvention Package Description org.modelmapper.config Configuration typesorg.modelmapper.convention Conventions -
-
Uses of NamingConvention in org.modelmapper.config
Methods in org.modelmapper.config that return NamingConvention Modifier and Type Method Description NamingConvention
Configuration. getDestinationNamingConvention()
Returns the destination naming convention.NamingConvention
Configuration. getSourceNamingConvention()
Gets the source naming convention.Methods in org.modelmapper.config with parameters of type NamingConvention Modifier and Type Method Description Configuration
Configuration. setDestinationNamingConvention(NamingConvention namingConvention)
Sets the convention used to identify destination property names during the matching process.Configuration
Configuration. setSourceNamingConvention(NamingConvention namingConvention)
Sets the convention used to identify source property names during the matching process. -
Uses of NamingConvention in org.modelmapper.convention
Fields in org.modelmapper.convention declared as NamingConvention Modifier and Type Field Description static NamingConvention
NamingConventions. JAVABEANS_ACCESSOR
JavaBeans naming convention for accessors.static NamingConvention
NamingConventions. JAVABEANS_MUTATOR
JavaBeans naming convention for mutators.static NamingConvention
NamingConventions. NONE
Represents no naming convention.Methods in org.modelmapper.convention that return NamingConvention Modifier and Type Method Description static NamingConvention
NamingConventions. builder()
Creates NameTransformer for builder.static NamingConvention
NamingConventions. builder(String prefix)
Creates NamingConvention for builder.
-