IOSerializer

interface IOSerializer<I, O>(source)

A serializer which is responsible for converting input and output values to and from strings.

Functions

Link copied to clipboard
abstract fun deserializeInput(input: String): I
Link copied to clipboard
abstract fun deserializeOutput(output: String): O
Link copied to clipboard
abstract fun serializeInput(input: I): String
Link copied to clipboard
abstract fun serializeOutput(output: O): String