Trait

scala.collection.convert

DecorateAsJava

Related Doc: package convert

Permalink

trait DecorateAsJava extends AnyRef

A collection of decorators that allow converting between Scala and Java collections using asScala and asJava methods.

The following conversions are supported via asJava, asScala

In all cases, converting from a source type to a target type and back again will return the original source object, e.g.

import scala.collection.JavaConverters._

val sl = new scala.collection.mutable.ListBuffer[Int]
val jl : java.util.List[Int] = sl.asJava
val sl2 : scala.collection.mutable.Buffer[Int] = jl.asScala
assert(sl eq sl2)

The following conversions are also supported, but the direction from Scala to Java is done by the more specifically named methods: asJavaCollection, asJavaEnumeration, asJavaDictionary.

In addition, the following one way conversions are provided via asJava:

The following one way conversion is provided via asScala:

Since

2.8.1

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DecorateAsJava
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. implicit def asJavaCollectionConverter[A](i: Iterable[A]): Decorators.AsJavaCollection[A]

    Permalink

    Adds an asJavaCollection method that implicitly converts a Scala Iterable to an immutable Java Collection.

    Adds an asJavaCollection method that implicitly converts a Scala Iterable to an immutable Java Collection.

    If the Scala Iterable was previously obtained from an implicit or explicit call of asSizedIterable(java.util.Collection) then the original Java Collection will be returned.

    i

    The SizedIterable to be converted.

    returns

    An object with an asJava method that returns a Java Collection view of the argument.

  6. implicit def asJavaDictionaryConverter[A, B](m: mutable.Map[A, B]): Decorators.AsJavaDictionary[A, B]

    Permalink

    Adds an asJavaDictionary method that implicitly converts a Scala mutable Map to a Java Dictionary.

    Adds an asJavaDictionary method that implicitly 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 Dictionary was previously obtained from an implicit or explicit call of asMap(java.util.Dictionary) then the original Java Dictionary will be returned.

    m

    The Map to be converted.

    returns

    An object with an asJavaDictionary method that returns a Java Dictionary view of the argument.

  7. implicit def asJavaEnumerationConverter[A](i: Iterator[A]): Decorators.AsJavaEnumeration[A]

    Permalink

    Adds an asJavaEnumeration method that implicitly converts a Scala Iterator to a Java Enumeration.

    Adds an asJavaEnumeration method that implicitly 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 asIterator(java.util.Enumeration) then the original Java Enumeration will be returned.

    i

    The Iterator to be converted.

    returns

    An object with an asJavaEnumeration method that returns a Java Enumeration view of the argument.

  8. implicit def asJavaIterableConverter[A](i: Iterable[A]): Decorators.AsJava[java.lang.Iterable[A]]

    Permalink

    Adds an asJava method that implicitly converts a Scala Iterable to a Java Iterable.

    Adds an asJava method that implicitly 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 asIterable(java.lang.Iterable) then the original Java Iterable will be returned.

    i

    The Iterable to be converted.

    returns

    An object with an asJavaCollection method that returns a Java Iterable view of the argument.

  9. implicit def asJavaIteratorConverter[A](i: Iterator[A]): Decorators.AsJava[java.util.Iterator[A]]

    Permalink

    Adds an asJava method that implicitly converts a Scala Iterator to a Java Iterator.

    Adds an asJava method that implicitly 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 asIterator(java.util.Iterator) then the original Java Iterator will be returned by the asJava method.

    i

    The Iterator to be converted.

    returns

    An object with an asJava method that returns a Java Iterator view of the argument.

  10. implicit def bufferAsJavaListConverter[A](b: Buffer[A]): Decorators.AsJava[java.util.List[A]]

    Permalink

    Adds an asJava method that implicitly converts a Scala mutable Buffer to a Java List.

    Adds an asJava method that implicitly 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 asBuffer(java.util.List) then the original Java List will be returned.

    b

    The Buffer to be converted.

    returns

    An object with an asJava method that returns a Java List view of the argument.

  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. implicit def mapAsJavaConcurrentMapConverter[A, B](m: concurrent.Map[A, B]): Decorators.AsJava[ConcurrentMap[A, B]]

    Permalink

    Adds an asJava method that implicitly converts a Scala mutable concurrent.Map to a Java ConcurrentMap.

    Adds an asJava method that implicitly 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 asConcurrentMap(java.util.concurrent.ConcurrentMap) then the original Java ConcurrentMap will be returned.

    m

    The Scala concurrent.Map to be converted.

    returns

    An object with an asJava method that returns a Java ConcurrentMap view of the argument.

  19. implicit def mapAsJavaMapConverter[A, B](m: Map[A, B]): Decorators.AsJava[java.util.Map[A, B]]

    Permalink

    Adds an asJava method that implicitly converts a Scala Map to a Java Map.

    Adds an asJava method that implicitly 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 asMap(java.util.Map) then the original Java Map will be returned.

    m

    The Map to be converted.

    returns

    An object with an asJava method that returns a Java Map view of the argument.

  20. implicit def mutableMapAsJavaMapConverter[A, B](m: mutable.Map[A, B]): Decorators.AsJava[java.util.Map[A, B]]

    Permalink

    Adds an asJava method that implicitly converts a Scala mutable Map to a Java Map.

    Adds an asJava method that implicitly 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 asMap(java.util.Map) then the original Java Map will be returned.

    m

    The Map to be converted.

    returns

    An object with an asJava method that returns a Java Map view of the argument.

  21. implicit def mutableSeqAsJavaListConverter[A](b: mutable.Seq[A]): Decorators.AsJava[java.util.List[A]]

    Permalink

    Adds an asJava method that implicitly converts a Scala mutable Seq to a Java List.

    Adds an asJava method that implicitly 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 asSeq(java.util.List) then the original Java List will be returned.

    b

    The Seq to be converted.

    returns

    An object with an asJava method that returns a Java List view of the argument.

  22. implicit def mutableSetAsJavaSetConverter[A](s: mutable.Set[A]): Decorators.AsJava[java.util.Set[A]]

    Permalink

    Adds an asJava method that implicitly converts a Scala mutable Set> to a Java Set.

    Adds an asJava method that implicitly 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 asSet(java.util.Set) then the original Java Set will be returned.

    s

    The Set to be converted.

    returns

    An object with an asJava method that returns a Java Set view of the argument.

  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. implicit def seqAsJavaListConverter[A](b: Seq[A]): Decorators.AsJava[java.util.List[A]]

    Permalink

    Adds an asJava method that implicitly converts a Scala Seq to a Java List.

    Adds an asJava method that implicitly 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 asSeq(java.util.List) then the original Java List will be returned.

    b

    The Seq to be converted.

    returns

    An object with an asJava method that returns a Java List view of the argument.

  27. implicit def setAsJavaSetConverter[A](s: Set[A]): Decorators.AsJava[java.util.Set[A]]

    Permalink

    Adds an asJava method that implicitly converts a Scala Set to a Java Set.

    Adds an asJava method that implicitly 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 asSet(java.util.Set) then the original Java Set will be returned.

    s

    The Set to be converted.

    returns

    An object with an asJava method that returns a Java Set view of the argument.

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped