vote up 4 vote down star

I have a project that is mixed Java/Scala, it is Java GUI code that makes use of a Scala library. Is there a way to write Scala code such that it will emit Java enums on compile time? The approaches I tried so far (sealed case classes, extend Enumeration) seem to generate normal classes which makes working with them from Java much hairier than straight up enums.

flag

71% accept rate

2 Answers

vote up 1 vote down check

Why can't you write your enum class in Java? Mixed-source (i.e. Java + Scala) projects are perfectly feasible...

link|flag
Indeed, that was also my conclusion, I will accept this answer. Maven support for mixed projects is still very flaky though. – Boris Terzic Jul 7 at 7:42
vote up 0 vote down

Scala only supports Java 1.4 features at this point.

Java Enums were introduced in Java 1.5.

link|flag
1  
Er, apart from generics – oxbow_lakes Jul 7 at 7:20
Generics are implemented with type erasure, after compilation there are no generics anymore. But Scala supports annotations and those are retained when compiling to bytecode and that is most definitely a Java 1.5 feature. – Boris Terzic Jul 7 at 7:47
Generics in java is implemented via type erasure as well – oxbow_lakes Jul 7 at 9:28
What Boris meant is that Scala only support JVM 1.4 features. Language features that do no exist on the bytecode are irrelevant. Except, of course, interface-wise. :-) – Daniel Jul 7 at 13:21
@Daniel, My understanding is that JVM bytecode hasn't changed since 1.0. So the only differences between 1.4 and 1.5 are language features. – Jay Conrod Jul 7 at 15:27
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.