ObjectMappie5

abstract class ObjectMappie5<in FROM1, in FROM2, in FROM3, in FROM4, in FROM5, out TO> : Mappie<TO>

Base class for object mappers. See the documentation for a complete overview of how to generate object mappers.

Parameters

FROM1

the first source type to map from.

FROM2

the second source type to map from.

FROM3

the third source type to map from.

FROM4

the fourth source type to map from.

FROM5

the fifth source type to map from.

TO

the target type to map to.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open fun map(first: FROM1, second: FROM2, third: FROM3, fourth: FROM4, fifth: FROM5): TO

Map first, second, third, fourth, and fifth to an instance of TO.

Link copied to clipboard
open fun mapNullable(first: FROM1?, second: FROM2?, third: FROM3?, fourth: FROM4?, fifth: FROM5?): TO?

Map nullable first, second, third, fourth, and fifth to an instance of TO.