commonMain.com.bselzer.ktx.value.enumeration.BindableEnum.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of value-enumeration-jvm Show documentation
Show all versions of value-enumeration-jvm Show documentation
Value class wrappers for enumerations.
The newest version!
package com.bselzer.ktx.value.enumeration
interface BindableEnum where T : Enum {
/**
* Converts the [BindableEnum] to the [T] enumeration.
*/
fun toEnum(): T
/**
* Converts the [BindableEnum] to the [T] enumeration, or null if the conversion is not possible.
*/
fun toEnumOrNull(): T?
}