This pertains to calling Scala code from Java or vice-versa.
I'm writing some Scala code which uses the Apache POI API. I would like to iterate over the rows contained …
java scala collections scala-java-interopHow to convert Scala's scala.List into Java's java.util.List?
java scala scala-java-interopI have this Scala method with below error. Cannot convert into a Scala list. def findAllQuestion():List[Question]={ questionDao.getAllQuestions() } …
list scala scala-java-interopWhat is the difference between == and .equals() in Scala, and when to use which? Is the implementation same as in …
scala equality scala-java-interopI need to implement a method that returns a Scala Seq, in Java. But I encounter this error: java.util.…
java scala seq scala-java-interopI have an app written in Scala and some of my team members want a Java version of it. It …
java scala scala-java-interop code-translationI would like to be able to perform the following, but it fails in the call to useMap. How can …
scala collections type-conversion implicit-conversion scala-java-interopIn scala.collection, there are two very similar objects JavaConversions and JavaConverters. What is the difference between these two objects? …
scala scala-collections scala-java-interopI have a java map: java.util.Map<SomeObject, java.util.Collection<OtherObject>> and I would …
java scala type-conversion scala-collections scala-java-interopI am new to Scala. I am only able to write basic code thus far, but I want to start …
java scala scala-java-interop