enum class Types(val value: Int) { FOO(1), BAR(2), FOO_BAR(3); companion object { fun fromInt(value: Int) = Types.values().first { it.value == value } ...
確定! 回上一頁