ObjectMappie4

abstract class ObjectMappie4<in FROM1, in FROM2, in FROM3, in FROM4, 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.

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): TO

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

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

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