This object contains methods that convert between Scala and Java collections.
This object contains methods that convert between Scala and Java collections.
The explicit conversion methods defined here are intended to be used in Java code. For Scala code, it is recommended to use the extension methods defined inscala.jdk.CollectionConverters.
Note: to createJava Streams that operate on Scala collections (sequentially or in parallel), useStreamConverters.
// Java Codeimport scala.jdk.javaapi.CollectionConverters;public class A { public void t(scala.collection.immutable.List<String> l) { java.util.List<String> jl = CollectionConverters.asJava(l); }}The conversions return adapters for the corresponding API, i.e., the collections are wrapped, not converted. Changes to the original collection are reflected in the view, and vice versa.
The following conversions are supported viaasScala andasJava:
scala.collection.Iterable <=> java.lang.Iterablescala.collection.Iterator <=> java.util.Iteratorscala.collection.mutable.Buffer <=> java.util.Listscala.collection.mutable.Set <=> java.util.Setscala.collection.mutable.Map <=> java.util.Mapscala.collection.concurrent.Map <=> java.util.concurrent.ConcurrentMapThe following conversions are supported viaasScala and through specially-named methods to convert to Java collections, as shown:
scala.collection.Iterable <=> java.util.Collection (via asJavaCollection)scala.collection.Iterator <=> java.util.Enumeration (via asJavaEnumeration)scala.collection.mutable.Map <=> java.util.Dictionary (via asJavaDictionary)In addition, the following one-way conversions are provided viaasJava:
scala.collection.Seq => java.util.Listscala.collection.mutable.Seq => java.util.Listscala.collection.Set => java.util.Setscala.collection.Map => java.util.MapThe following one way conversion is provided viaasScala:
java.util.Properties => scala.collection.mutable.MapIn all cases, converting from a source type to a target type and back again will return the original source object.
This object contains methods that convert between Scala and Java duration types.
This object contains methods that convert between Scala and Java duration types.
The explicit conversion methods defined here are intended to be used in Java code. For Scala code, it is recommended to use the extension methods defined inscala.jdk.DurationConverters.
This object contains methods that convert between Scala and Java function types.
This object contains methods that convert between Scala and Java function types.
The explicit conversion methods defined here are intended to be used in Java code. For Scala code, it is recommended to use the extension methods defined inscala.jdk.FunctionConverters.
For details how the function converters work, seescala.jdk.FunctionConverters.
This object contains methods that convert between Scalascala.concurrent.Future and Javajava.util.concurrent.CompletionStage.
This object contains methods that convert between Scalascala.concurrent.Future and Javajava.util.concurrent.CompletionStage.
The explicit conversion methods defined here are intended to be used in Java code. For Scala code, it is recommended to use the extension methods defined inscala.jdk.FutureConverters.
Note that the bridge is implemented at the read-only side of asynchronous handles, namelyscala.concurrent.Future (instead ofscala.concurrent.Promise) andjava.util.concurrent.CompletionStage (instead ofjava.util.concurrent.CompletableFuture). This is intentional, as the semantics of bridging the write-handles would be prone to race conditions; if both ends (CompletableFuture andPromise) are completed independently at the same time, they may contain different values afterwards. For this reason,toCompletableFuture is not supported on the createdCompletionStages.
This object contains methods that convert between ScalaOption and JavaOptional types.
This object contains methods that convert between ScalaOption and JavaOptional types.
The explicit conversion methods defined here are intended to be used in Java code. For Scala code, it is recommended to use the extension methods defined inscala.jdk.OptionConverters.
This object contains methods to create Java Streams that operate on Scala collections (sequentially or in parallel).
This object contains methods to create Java Streams that operate on Scala collections (sequentially or in parallel). For more information on Java streams, consult the documentation (https://docs.oracle.com/javase/8/docs/api/java/util/stream/package-summary.html).
The explicit conversion methods defined here are intended to be used in Java code. For Scala code, it is recommended to use the extension methods defined inscala.jdk.StreamConverters.
Note: to convert between Scala collections and classic Java collections, useCollectionConverters.
For details how the stream converters work, seescala.jdk.StreamConverters.