Converter

interface Converter<FROM : Any, TO : Any>(source)

A type converter. Converter an instance from type A to type B.

Author

ForteScarlet

Functions

Link copied to clipboard
abstract fun convert(instance: FROM): TO?

Converter an instance of type FROM to type TO.