28

I have a Set in Scala (I can choose any implementation as I am creating the Set. The Java library I am using is expecting a java.util.Set[String].

Is the following the correct way to do this in Scala (using scala.collection.jcl.HashSet#underlying):

import com.javalibrary.Animals

var classes = new scala.collection.jcl.HashSet[String]
classes += "Amphibian"
classes += "Reptile"
Animals.find(classes.underlying)

It seems to be working, but since I am very new to Scala I want to know if this is the preferred way (any other way I try I am getting a type-mismatch error):

error: type mismatch;
 found   : scala.collection.jcl.HashSet[String]
 required: java.util.Set[_]
om-nom-nom
  • 62,329
  • 13
  • 183
  • 228
or9ob
  • 2,313
  • 4
  • 25
  • 45

5 Answers5

24

If you were asking about Scala 2.8, Java collections interoperability is supplied by scala.collection.JavaConversions. In this case, you want JavaConversions.asSet(...) (there's one for each direction, Java -> Scala and Scala -> Java).

For Scala 2.7, each scala.collection.jcl class that wraps a Java collection has an underlying property which provides the wrapped Java collection instance.

Randall Schulz
  • 26,420
  • 4
  • 61
  • 81
10

Since Scala 2.12.0 scala.collection.JavaConversions is deprecated:

Therefore, this API has been deprecated and JavaConverters should be used instead. JavaConverters provides the same conversions, but through extension methods.

And since Scala 2.8.1 you can use scala.collection.JavaConverters for this purpose:

import scala.collection.JavaConverters._
val javaSet = new java.util.HashSet[String]()
val scalaSet = javaSet.asScala
val javaSetAgain = scalaSet.asJava
mixel
  • 25,177
  • 13
  • 126
  • 165
6

Note that starting Scala 2.13, package scala.jdk.CollectionConverters replaces deprecated packages scala.collection.JavaConverters/JavaConversions._:

import scala.jdk.CollectionConverters._

// val scalaSet: Set[String] = Set("a", "b")
val javaSet = scalaSet.asJava
// javaSet: java.util.Set[String] = [a, b]
javaSet.asScala
// scala.collection.mutable.Set[String] = Set(a, b)
Xavier Guihot
  • 54,987
  • 21
  • 291
  • 190
5

For 2.7.x I highly recommend using: http://github.com/jorgeortiz85/scala-javautils

Viktor Klang
  • 26,479
  • 7
  • 51
  • 68
4

In Scala 2.12 it is possible to use : scala.collection.JavaConverters.setAsJavaSet(scalaSetInstance)

Nik Kashi
  • 4,447
  • 3
  • 40
  • 63