Uses of Interface
org.modelmapper.spi.MatchingStrategy
-
Packages that use MatchingStrategy Package Description org.modelmapper.config Configuration typesorg.modelmapper.convention Conventions -
-
Uses of MatchingStrategy in org.modelmapper.config
Methods in org.modelmapper.config that return MatchingStrategy Modifier and Type Method Description MatchingStrategy
Configuration. getMatchingStrategy()
Gets the matching strategy.Methods in org.modelmapper.config with parameters of type MatchingStrategy Modifier and Type Method Description Configuration
Configuration. setMatchingStrategy(MatchingStrategy matchingStrategy)
Sets the strategy used to match source properties to destination properties. -
Uses of MatchingStrategy in org.modelmapper.convention
Fields in org.modelmapper.convention declared as MatchingStrategy Modifier and Type Field Description static MatchingStrategy
MatchingStrategies. LOOSE
A matching strategy that allows for source properties to be loosely matched to destination properties by requiring that only the last destination property in a hierarchy be matched.static MatchingStrategy
MatchingStrategies. STANDARD
A matching strategy that allows for source properties to be intelligently matched to destination properties, requiring that all destination properties be matched and all source property names have at least one token matched.static MatchingStrategy
MatchingStrategies. STRICT
A matching strategy that allows for source properties to be strictly matched to destination properties.
-