I have a Java class that needs to stay in Java for a variety of reasons. It is calling a method on a class implemented with a Scala trait and a Scala implementation that needs a Scala immutable map. Yes, I have seen how to use implicit and explicit code if I have the Java Map and I am doing the converting in Scala code, but I am trying to do the conversion from Java code and have seen nothing like that on Stack Overflow.
I am using Eclipse and the project has the Scala nature added to it. I tried importing scala.collection.JavaConverters, and Eclipse just gave me an error saying it couldn't find the class even though I can see the class when I open up the scala-library in the Scala Library container. I am using Scala 2.11.8
How can I write explicit code that converts the Java Map into the Scala Map in Java code?