AsJavaConverters
Defines converter methods from Scala to Java collections. These methods are available through the scala.jdk.javaapi.CollectionConverters object.
Attributes
- Source
- AsJavaConverters.scala
- Graph
-
- Supertypes
- Known subtypes
-
object JavaConvertersobject CollectionConverters
Members list
Value members
Concrete methods
Converts a Scala Iterator to a Java Iterator.
Converts a Scala Iterator to a Java Iterator.
The returned Java Iterator is backed by the provided Scala Iterator and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Iterator was previously obtained from an implicit or explicit call of asScala then the original Java Iterator will be returned.
Value parameters
- i
-
The Scala
Iteratorto be converted.
Attributes
- Returns
-
A Java
Iteratorview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala Iterable to a Java Iterable.
Converts a Scala Iterable to a Java Iterable.
The returned Java Iterable is backed by the provided Scala Iterable and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Iterable was previously obtained from an implicit or explicit call of asScala then the original Java Iterable will be returned.
Value parameters
- i
-
The Scala
Iterableto be converted.
Attributes
- Returns
-
A Java
Iterableview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala mutable Buffer to a Java List.
Converts a Scala mutable Buffer to a Java List.
The returned Java List is backed by the provided Scala Buffer and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Buffer was previously obtained from an implicit or explicit call of asScala then the original Java List will be returned.
Value parameters
- b
-
The Scala
Bufferto be converted.
Attributes
- Returns
-
A Java
Listview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala mutable Seq to a Java List.
Converts a Scala mutable Seq to a Java List.
The returned Java List is backed by the provided Scala Seq and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Seq was previously obtained from an implicit or explicit call of asScala then the original Java List will be returned.
Value parameters
- s
-
The Scala
Seqto be converted.
Attributes
- Returns
-
A Java
Listview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala Seq to a Java List.
Converts a Scala Seq to a Java List.
The returned Java List is backed by the provided Scala Seq and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Seq was previously obtained from an implicit or explicit call of asScala then the original Java List will be returned.
Value parameters
- s
-
The Scala
Seqto be converted.
Attributes
- Returns
-
A Java
Listview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala mutable Set to a Java Set.
Converts a Scala mutable Set to a Java Set.
The returned Java Set is backed by the provided Scala Set and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Set was previously obtained from an implicit or explicit call of asScala then the original Java Set will be returned.
Value parameters
- s
-
The Scala mutable
Setto be converted.
Attributes
- Returns
-
A Java
Setview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala Set to a Java Set.
Converts a Scala Set to a Java Set.
The returned Java Set is backed by the provided Scala Set and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Set was previously obtained from an implicit or explicit call of asScala then the original Java Set will be returned.
Value parameters
- s
-
The Scala
Setto be converted.
Attributes
- Returns
-
A Java
Setview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala mutable Map to a Java Map.
Converts a Scala mutable Map to a Java Map.
The returned Java Map is backed by the provided Scala Map and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Map was previously obtained from an implicit or explicit call of asScala then the original Java Map will be returned.
Value parameters
- m
-
The Scala mutable
Mapto be converted.
Attributes
- Returns
-
A Java
Mapview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala Map to a Java Map.
Converts a Scala Map to a Java Map.
The returned Java Map is backed by the provided Scala Map and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Map was previously obtained from an implicit or explicit call of asScala then the original Java Map will be returned.
Value parameters
- m
-
The Scala
Mapto be converted.
Attributes
- Returns
-
A Java
Mapview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala mutable concurrent.Map to a Java ConcurrentMap.
Converts a Scala mutable concurrent.Map to a Java ConcurrentMap.
The returned Java ConcurrentMap is backed by the provided Scala concurrent.Map and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala concurrent.Map was previously obtained from an implicit or explicit call of asScala then the original Java ConcurrentMap will be returned.
Value parameters
- m
-
The Scala
concurrent.Mapto be converted.
Attributes
- Returns
-
A Java
ConcurrentMapview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala Iterable to an immutable Java Collection.
Converts a Scala Iterable to an immutable Java Collection.
If the Scala Iterable was previously obtained from an implicit or explicit call of asScala then the original Java Collection will be returned.
Value parameters
- i
-
The Scala
Iterableto be converted.
Attributes
- Returns
-
A Java
Collectionview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala mutable Map to a Java Dictionary.
Converts a Scala mutable Map to a Java Dictionary.
The returned Java Dictionary is backed by the provided Scala Dictionary and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Map was previously obtained from an implicit or explicit call of asScala then the original Java Dictionary will be returned.
Value parameters
- m
-
The Scala
Mapto be converted.
Attributes
- Returns
-
A Java
Dictionaryview of the argument. - Source
- AsJavaConverters.scala
Converts a Scala Iterator to a Java Enumeration.
Converts a Scala Iterator to a Java Enumeration.
The returned Java Enumeration is backed by the provided Scala Iterator and any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.
If the Scala Iterator was previously obtained from an implicit or explicit call of asScala then the original Java Enumeration will be returned.
Value parameters
- i
-
The Scala
Iteratorto be converted.
Attributes
- Returns
-
A Java
Enumerationview of the argument. - Source
- AsJavaConverters.scala