ObjectMapperConfig

ObjectMapper configuration.

package
class ObjectMapperConfig (
TSrc
TDst
TSourceConv
TDestConv
bool Rev
Mps...
) if (
isClassOrStruct!TSrc &&
isClassOrStruct!TDst
&&
isNamingConvention!TSourceConv
&&
isNamingConvention!TDestConv
&&
allSatisfy!(isObjectMemberMappingConfig, Mps)
) {}

Members

Aliases

Mappings
alias Mappings = Mps
Undocumented in source.
Reverse
alias Reverse = Rev
Undocumented in source.
TDest
alias TDest = TDst
Undocumented in source.
TSource
alias TSource = TSrc
Undocumented in source.

Parameters

TSrc

The type of source object.

TDst

The type of destination object.

TSourceConv

The type of source naming convention to use.

TDestConv

The type of source naming convention to use.

Rev

true if we must reverse this mapper.

Mps

A list of member mapping specialization.

Meta