This pertains to calling Scala code from Java or vice-versa.
Can I use scala List in Java, like : import scala.collection.immutable.List; class HelloScalaList { public static void main (String[] …
java scala-collections scala-java-interopI am learning Scala and I have a Java project to migrate to Scala. I want to migrate it by …
java scala interop scala-java-interopPossible Duplicate: How do I disambiguate in Scala between methods with vararg and without I am currently porting part of …
scala scala-java-interopI have a String in my Scala program that I'd like to cast as an Int. def foo(): Int = x.…
java string scala scala-java-interopI am using the Scala 2.8 default parameters on a constructor, and for Java compatibility reasons, I wanted a no-arg constructor …
scala constructor default-parameters scala-java-interopHow can you access scala.None from Java? The last line causes the compiler to die with "type scala.None …
java scala singleton scala-java-interop maybeI am using a Java API that requires ArrayList as parameter. Now in Scala, I have a List[String]. How …
java scala scala-java-interopI have very basic problem with scala.collection.JavaConversions. I would expect that following code would work but implicit conversion …
java scala implicit-conversion scala-java-interopI have a library here with some Java classes. One class has some protected static methods, which I realize is …
scala scala-java-interop