class EnumColumnAdapter<T : Enum<T>> : ColumnAdapter<T, String>
A ColumnAdapter which maps the enum class T to a string in the database.
T
decode
fun decode(databaseValue: String): T
encode
fun encode(value: T): String