Is possible that an enumeration data type in Scala can be implemented as String as
enum Currency {CAD, EUR, USD }
in Java instead of
object Currency extends Enumeration {
val CAD, EUR, USD = Value
}
which data value is binary?
I write a same functionality in both Java and Scala. The enumeration data is saved into database. The Java version works nicely with String value, but not the Scala version which is binary data.