Uses of Interface
org.modelmapper.spi.NameTransformer
-
Packages that use NameTransformer Package Description org.modelmapper.config Configuration typesorg.modelmapper.convention Conventions -
-
Uses of NameTransformer in org.modelmapper.config
Methods in org.modelmapper.config that return NameTransformer Modifier and Type Method Description NameTransformer
Configuration. getDestinationNameTransformer()
Returns the destination name transformer.NameTransformer
Configuration. getSourceNameTransformer()
Returns the source name transformer.Methods in org.modelmapper.config with parameters of type NameTransformer Modifier and Type Method Description Configuration
Configuration. setDestinationNameTransformer(NameTransformer nameTransformer)
Sets the name transformer used to transform destination property and class names during the matching process.Configuration
Configuration. setSourceNameTransformer(NameTransformer nameTransformer)
Sets the name transformer used to transform source property and class names during the matching process. -
Uses of NameTransformer in org.modelmapper.convention
Fields in org.modelmapper.convention declared as NameTransformer Modifier and Type Field Description static NameTransformer
NameTransformers. JAVABEANS_ACCESSOR
Transforms accessor names to their simple property name according to the JavaBeans convention.static NameTransformer
NameTransformers. JAVABEANS_MUTATOR
Transforms mutator names to their simple property name according to the JavaBeans convention.Methods in org.modelmapper.convention that return NameTransformer Modifier and Type Method Description static NameTransformer
NameTransformers. builder()
Creates NameTransformer for builder.static NameTransformer
NameTransformers. builder(String prefix)
Creates NameTransformer for builder.
-