Quantcast
Channel: Kotlin: convert from int to Enum - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Kotlin: convert from int to Enum

$
0
0

Is it possible to convert from int to my Enum in Kotlin?I have the Enum:

enum class Rank(val value: Int) { UNITY(1), TEN(2), HUNDRED(3), THOUSAND(4) }

And I want to call something like:

val results = ints.mapIndexed { index, element -> getRomanDigit(element, Rank(ints.size - index)) }

Viewing all articles
Browse latest Browse all 2

Trending Articles