UUIDToStringMapper

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard

A mapper for List to be used in TransformableValue.via.

Link copied to clipboard

A mapper for Set to be used in TransformableValue.via.

Functions

Link copied to clipboard
open override fun map(from: UUID): String

Map from to an instance of TO.

Link copied to clipboard
fun mapList(from: List<UUID>): List<String>

Map each element in from to an instance of TO.

Link copied to clipboard
fun mapNullable(from: UUID?): String?

Map nullable from to an instance of TO.

Link copied to clipboard
fun mapSet(from: Set<UUID>): Set<String>

Map each element in from to an instance of TO.