SupportConverter

abstract class SupportConverter<M, E> : ISupportConverter<M, E>

Abstract implementation for a type converter

Since

1.3.0

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open override fun convertFrom(item: M): E

Convert from a single type M to E

open fun convertFrom(items: Collection<M>): List<E>

Convert from Collection types of M to E

Link copied to clipboard
open override fun convertTo(item: E): M

Convert from a single type E to M

open fun convertTo(items: Collection<E>): List<M>

Convert to Collection types of E to M