Uses of Interface
org.modelmapper.spi.MatchingStrategy
Packages that use MatchingStrategy
Package
Description
Configuration types
Conventions
-
Uses of MatchingStrategy in org.modelmapper.config
Methods in org.modelmapper.config that return MatchingStrategyModifier and TypeMethodDescriptionConfiguration.getMatchingStrategy()
Gets the matching strategy.Methods in org.modelmapper.config with parameters of type MatchingStrategyModifier and TypeMethodDescriptionConfiguration.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 MatchingStrategyModifier and TypeFieldDescriptionstatic final 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 final 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 final MatchingStrategy
MatchingStrategies.STRICT
A matching strategy that allows for source properties to be strictly matched to destination properties.