Packages

t

scala.collection.convert

ToScalaImplicits

trait ToScalaImplicits extends AnyRef

Defines implicit converter methods from Java to Scala collections.

Source
ImplicitConversions.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ToScalaImplicits
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. 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. See collectionAsScalaIterable.

  2. implicit def dictionary AsScalaMap[A, B](p: Dictionary[A, B]): mutable.Map[A, B]

    Implicitly converts a Java Dictionary to a Scala mutable Map.

    Implicitly converts a Java Dictionary to a Scala mutable Map. See dictionaryAsScalaMap.

  3. implicit def enumeration AsScalaIterator[A](i: java.util.Enumeration[A]): Iterator[A]

    Implicitly converts a Java Enumeration to a Scala Iterator.

    Implicitly converts a Java Enumeration to a Scala Iterator. See enumerationAsScalaIterator.

  4. implicit def iterable AsScalaIterable[A](i: java.lang.Iterable[A]): Iterable[A]

    Implicitly converts a Java Iterable to a Scala Iterable.

    Implicitly converts a Java Iterable to a Scala Iterable. See iterableAsScalaIterable.

  5. implicit def iterator asScala[A](it: java.util.Iterator[A]): Iterator[A]

    Implicitly converts a Java Iterator to a Scala Iterator.

    Implicitly converts a Java Iterator to a Scala Iterator. See asScalaIterator.

  6. implicit def list asScalaBuffer[A](l: java.util.List[A]): Buffer[A]

    Implicitly converts a Java List to a Scala mutable Buffer.

    Implicitly converts a Java List to a Scala mutable Buffer. See asScalaBuffer.

  7. implicit def map AsScala[A, B](m: java.util.Map[A, B]): mutable.Map[A, B]

    Implicitly converts a Java Map to a Scala mutable Map.

    Implicitly converts a Java Map to a Scala mutable Map. See mapAsScalaMap.

  8. implicit def map AsScalaConcurrentMap[A, B](m: ConcurrentMap[A, B]): concurrent.Map[A, B]

    Implicitly converts a Java ConcurrentMap to a Scala mutable ConcurrentMap.

    Implicitly converts a Java ConcurrentMap to a Scala mutable ConcurrentMap. See mapAsScalaConcurrentMap.

  9. implicit def properties AsScalaMap(p: Properties): mutable.Map[String, String]

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

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

  10. implicit def set asScala[A](s: java.util.Set[A]): mutable.Set[A]

    Implicitly converts a Java Set to a Scala mutable Set.

    Implicitly converts a Java Set to a Scala mutable Set. See asScalaSet.