ToScalaImplicits

scala.collection.convert.ToScalaImplicits

Defines implicit converter methods from Java to Scala collections.

Attributes

Deprecated
true
Source
ImplicitConversions.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Keywords
  • no keywords
  • implicit

Implicits

Implicits

implicit def `collection AsScalaIterable`[A](i: Collection[A]): Iterable[A]

Implicitly converts a Java Collection to an Scala Iterable.

Implicitly converts a Java Collection to an Scala Iterable.

Attributes

See also
Source
ImplicitConversions.scala
implicit def `dictionary AsScalaMap`[K, V](p: Dictionary[K, V]): Map[K, V]

Implicitly converts a Java Dictionary to a Scala mutable Map.

Implicitly converts a Java Dictionary to a Scala mutable Map.

Attributes

See also
Source
ImplicitConversions.scala

Implicitly converts a Java Enumeration to a Scala Iterator.

Implicitly converts a Java Enumeration to a Scala Iterator.

Attributes

See also
Source
ImplicitConversions.scala
implicit def `iterable AsScalaIterable`[A](i: Iterable[A]): Iterable[A]

Implicitly converts a Java Iterable to a Scala Iterable.

Implicitly converts a Java Iterable to a Scala Iterable.

Attributes

See also
Source
ImplicitConversions.scala
implicit def `iterator asScala`[A](it: Iterator[A]): Iterator[A]

Implicitly converts a Java Iterator to a Scala Iterator.

Implicitly converts a Java Iterator to a Scala Iterator.

Attributes

See also
Source
ImplicitConversions.scala
implicit def `list asScalaBuffer`[A](l: List[A]): Buffer[A]

Implicitly converts a Java List to a Scala mutable Buffer.

Implicitly converts a Java List to a Scala mutable Buffer.

Attributes

See also
Source
ImplicitConversions.scala
implicit def `map AsScalaConcurrentMap`[K, V](m: ConcurrentMap[K, V]): Map[K, V]

Implicitly converts a Java ConcurrentMap to a Scala mutable ConcurrentMap.

Implicitly converts a Java ConcurrentMap to a Scala mutable ConcurrentMap.

Attributes

See also
Source
ImplicitConversions.scala
implicit def `map AsScala`[K, V](m: Map[K, V]): Map[K, V]

Implicitly converts a Java Map to a Scala mutable Map.

Implicitly converts a Java Map to a Scala mutable Map.

Attributes

See also
Source
ImplicitConversions.scala

Implicitly converts a Java Properties to a Scala mutable Map[String, String].

Implicitly converts a Java Properties to a Scala mutable Map[String, String].

Attributes

See also
Source
ImplicitConversions.scala
implicit def `set asScala`[A](s: Set[A]): Set[A]

Implicitly converts a Java Set to a Scala mutable Set.

Implicitly converts a Java Set to a Scala mutable Set.

Attributes

See also
Source
ImplicitConversions.scala