Package-level declarations

Types

Link copied to clipboard
abstract class EnumMappie<FROM : Enum<*>, TO> : Mappie<TO>

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

Link copied to clipboard
Link copied to clipboard
sealed class ListMappie<out TO> : Mappie<List<TO>>

Base mapper class for list mappers. Cannot be instantiated, but can be created by using the field ObjectMappie.forList.

Link copied to clipboard
interface Mappie<out TO>
Link copied to clipboard
abstract class ObjectMappie<FROM, out TO> : Mappie<TO>

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

Link copied to clipboard
abstract class ObjectMappie2<in FROM1, in FROM2, out TO> : Mappie<TO>

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

Link copied to clipboard
abstract class ObjectMappie3<in FROM1, in FROM2, in FROM3, out TO> : Mappie<TO>

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

Link copied to clipboard
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.

Link copied to clipboard
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.

Link copied to clipboard
Link copied to clipboard
sealed class SetMappie<out TO> : Mappie<Set<TO>>

Base mapper class for set mappers. Cannot be instantiated, but can be created by using the field ObjectMappie.forSet.

Link copied to clipboard

The result of an explicit mapping definition which can be transformed.