class Converters
Converter functions for object types that are not natively supported by SQLite
Author
Jan Müller
Author
Juri Lozowoj
Author
Lucas Held
<init> |
Converter functions for object types that are not natively supported by SQLite Converters() |
fromBooleanToInt |
Converts a Boolean value into an Int value fun fromBooleanToInt(enabled: Boolean): Int |
fromIntToBoolean |
Converts a Int value into an Boolean value fun fromIntToBoolean(booleanInt: Int): Boolean |
fromStringToSymbolType |
Converts String to Symbol.Type. fun fromStringToSymbolType(typeString: String): Type |
fromStringToTransactionType |
Converts String to TransactionType. fun fromStringToTransactionType(typeString: String): TransactionType |
fromSymbolTypeToString |
Converts Symbol.Type to String. fun fromSymbolTypeToString(type: Type): String |
fromTransactionTypeToString |
Converts TransactionType to String. fun fromTransactionTypeToString(type: TransactionType): String |