object JavaConverters extends DecorateAsJava with DecorateAsScala
A variety of decorators that enable converting between
Scala and Java collections using extension methods, asScala and asJava.
The extension methods return adapters for the corresponding API.
The following conversions are supported via asScala and asJava:
strawman.collection.Iterable <=> java.lang.Iterable strawman.collection.Iterator <=> java.util.Iterator strawman.collection.mutable.Buffer <=> java.util.List strawman.collection.mutable.Set <=> java.util.Set strawman.collection.mutable.Map <=> java.util.Map strawman.collection.concurrent.Map <=> java.util.concurrent.ConcurrentMap
The following conversions are supported via asScala and through
specially-named extension methods to convert to Java collections, as shown:
strawman.collection.Iterable <=> java.util.Collection (via asJavaCollection) strawman.collection.Iterator <=> java.util.Enumeration (via asJavaEnumeration) strawman.collection.mutable.Map <=> java.util.Dictionary (via asJavaDictionary)
In addition, the following one-way conversions are provided via asJava:
strawman.collection.Seq => java.util.List strawman.collection.mutable.Seq => java.util.List strawman.collection.Set => java.util.Set strawman.collection.Map => java.util.Map
The following one way conversion is provided via asScala:
java.util.Properties => strawman.collection.mutable.Map
In all cases, converting from a source type to a target type and back again will return the original source object. For example:
import strawman.collection.JavaConverters._ val source = new strawman.collection.mutable.ListBuffer[Int] val target: java.util.List[Int] = source.asJava val other: strawman.collection.mutable.Buffer[Int] = target.asScala assert(source eq other)
Alternatively, the conversion methods have descriptive names and can be invoked explicitly.
scala> val vs = java.util.Arrays.asList("hi", "bye") vs: java.util.List[String] = [hi, bye] scala> val ss = asScalaIterator(vs.iterator) ss: Iterator[String] = non-empty iterator scala> .toList res0: List[String] = List(hi, bye) scala> val ss = asScalaBuffer(vs) ss: strawman.collection.mutable.Buffer[String] = Buffer(hi, bye)
- Since
2.8.1
- Alphabetic
- By Inheritance
- JavaConverters
- DecorateAsScala
- AsScalaConverters
- DecorateAsJava
- AsJavaConverters
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
asJavaCollection[A](i: Iterable[A]): Collection[A]
Converts a Scala
Iterableto an immutable JavaCollection.Converts a Scala
Iterableto an immutable JavaCollection.If the Scala
Iterablewas previously obtained from an implicit or explicit call ofJavaConverters.collectionAsScalaIterable(java.util.Collection)then the original JavaCollectionwill be returned.- i
The Scala
Iterableto be converted.- returns
A Java
Collectionview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
asJavaCollectionConverter[A](i: Iterable[A]): AsJavaCollection[A]
Adds an
asJavaCollectionmethod that implicitly converts a ScalaIterableto an immutable JavaCollection.Adds an
asJavaCollectionmethod that implicitly converts a ScalaIterableto an immutable JavaCollection.- Definition Classes
- DecorateAsJava
- See also
-
def
asJavaDictionary[A, B](m: mutable.Map[A, B]): Dictionary[A, B]
Converts a Scala mutable
Mapto a JavaDictionary.Converts a Scala mutable
Mapto a JavaDictionary.The returned Java
Dictionaryis backed by the provided ScalaDictionaryand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Dictionarywas previously obtained from an implicit or explicit call ofJavaConverters.dictionaryAsScalaMap(java.util.Dictionary)then the original JavaDictionarywill be returned.- m
The Scala
Mapto be converted.- returns
A Java
Dictionaryview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
asJavaDictionaryConverter[A, B](m: mutable.Map[A, B]): AsJavaDictionary[A, B]
Adds an
asJavaDictionarymethod that implicitly converts a Scala mutableMapto a JavaDictionary.Adds an
asJavaDictionarymethod that implicitly converts a Scala mutableMapto a JavaDictionary.- Definition Classes
- DecorateAsJava
- See also
-
def
asJavaEnumeration[A](i: Iterator[A]): Enumeration[A]
Converts a Scala
Iteratorto a JavaEnumeration.Converts a Scala
Iteratorto a JavaEnumeration.The returned Java
Enumerationis backed by the provided ScalaIteratorand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Iteratorwas previously obtained from an implicit or explicit call ofJavaConverters.enumerationAsScalaIterator(java.util.Enumeration)then the original JavaEnumerationwill be returned.- i
The Scala
Iteratorto be converted.- returns
A Java
Enumerationview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
asJavaEnumerationConverter[A](i: Iterator[A]): AsJavaEnumeration[A]
Adds an
asJavaEnumerationmethod that implicitly converts a ScalaIteratorto a JavaEnumeration.Adds an
asJavaEnumerationmethod that implicitly converts a ScalaIteratorto a JavaEnumeration.- Definition Classes
- DecorateAsJava
- See also
-
def
asJavaIterable[A](i: Iterable[A]): java.lang.Iterable[A]
Converts a Scala
Iterableto a JavaIterable.Converts a Scala
Iterableto a JavaIterable.The returned Java
Iterableis backed by the provided ScalaIterableand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Iterablewas previously obtained from an implicit or explicit call ofJavaConverters.iterableAsScalaIterable(java.lang.Iterable)then the original JavaIterablewill be returned.- i
The Scala
Iterableto be converted.- returns
A Java
Iterableview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
asJavaIterableConverter[A](i: Iterable[A]): AsJava[java.lang.Iterable[A]]
Adds an
asJavamethod that implicitly converts a ScalaIterableto a JavaIterable.Adds an
asJavamethod that implicitly converts a ScalaIterableto a JavaIterable.- Definition Classes
- DecorateAsJava
- See also
-
def
asJavaIterator[A](i: Iterator[A]): java.util.Iterator[A]
Converts a Scala
Iteratorto a JavaIterator.Converts a Scala
Iteratorto a JavaIterator.The returned Java
Iteratoris backed by the provided ScalaIteratorand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Iteratorwas previously obtained from an implicit or explicit call ofJavaConverters.asScalaIterator(java.util.Iterator)then the original JavaIteratorwill be returned.- i
The Scala
Iteratorto be converted.- returns
A Java
Iteratorview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
asJavaIteratorConverter[A](i: Iterator[A]): AsJava[java.util.Iterator[A]]
Adds an
asJavamethod that implicitly converts a ScalaIteratorto a JavaIterator.Adds an
asJavamethod that implicitly converts a ScalaIteratorto a JavaIterator.- Definition Classes
- DecorateAsJava
- See also
-
def
asScalaBuffer[A](l: List[A]): Buffer[A]
Converts a Java
Listto a Scala mutableBuffer.Converts a Java
Listto a Scala mutableBuffer.The returned Scala
Bufferis backed by the provided JavaListand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.If the Java
Listwas previously obtained from an implicit or explicit call ofJavaConverters.bufferAsJavaList(scala.collection.mutable.Buffer)then the original ScalaBufferwill be returned.- l
The Java
Listto be converted.- returns
A Scala mutable
Bufferview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
asScalaBufferConverter[A](l: List[A]): AsScala[Buffer[A]]
Adds an
asScalamethod that implicitly converts a JavaListto a Scala mutableBuffer.Adds an
asScalamethod that implicitly converts a JavaListto a Scala mutableBuffer.- Definition Classes
- DecorateAsScala
- See also
-
def
asScalaIterator[A](i: java.util.Iterator[A]): Iterator[A]
Converts a Java
Iteratorto a ScalaIterator.Converts a Java
Iteratorto a ScalaIterator.The returned Scala
Iteratoris backed by the provided JavaIteratorand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.If the Java
Iteratorwas previously obtained from an implicit or explicit call ofJavaConverters.asJavaIterator(scala.collection.Iterator)then the original ScalaIteratorwill be returned.- i
The Java
Iteratorto be converted.- returns
A Scala
Iteratorview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
asScalaIteratorConverter[A](i: java.util.Iterator[A]): AsScala[Iterator[A]]
Adds an
asScalamethod that implicitly converts a JavaIteratorto a ScalaIterator.Adds an
asScalamethod that implicitly converts a JavaIteratorto a ScalaIterator.- Definition Classes
- DecorateAsScala
- See also
-
def
asScalaSet[A](s: java.util.Set[A]): mutable.Set[A]
Converts a Java
Setto a Scala mutableSet.Converts a Java
Setto a Scala mutableSet.The returned Scala
Setis backed by the provided JavaSetand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.If the Java
Setwas previously obtained from an implicit or explicit call ofJavaConverters.mutableSetAsJavaSet(scala.collection.mutable.Set)then the original ScalaSetwill be returned.- s
The Java
Setto be converted.- returns
A Scala mutable
Setview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
asScalaSetConverter[A](s: java.util.Set[A]): AsScala[mutable.Set[A]]
Adds an
asScalamethod that implicitly converts a JavaSetto a Scala mutableSet.Adds an
asScalamethod that implicitly converts a JavaSetto a Scala mutableSet.- Definition Classes
- DecorateAsScala
- See also
-
def
bufferAsJavaList[A](b: Buffer[A]): List[A]
Converts a Scala mutable
Bufferto a Java List.Converts a Scala mutable
Bufferto a Java List.The returned Java List is backed by the provided Scala
Bufferand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Bufferwas previously obtained from an implicit or explicit call ofJavaConverters.asScalaBuffer(java.util.List)then the original JavaListwill be returned.- b
The Scala
Bufferto be converted.- returns
A Java
Listview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
bufferAsJavaListConverter[A](b: Buffer[A]): AsJava[List[A]]
Adds an
asJavamethod that implicitly converts a Scala mutableBufferto a JavaList.Adds an
asJavamethod that implicitly converts a Scala mutableBufferto a JavaList.- Definition Classes
- DecorateAsJava
- See also
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
collectionAsScalaIterable[A](i: Collection[A]): Iterable[A]
Converts a Java
Collectionto an ScalaIterable.Converts a Java
Collectionto an ScalaIterable.If the Java
Collectionwas previously obtained from an implicit or explicit call ofJavaConverters.asJavaCollection(scala.collection.Iterable)then the original ScalaIterablewill be returned.- i
The Java
Collectionto be converted.- returns
A Scala
Iterableview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
collectionAsScalaIterableConverter[A](i: Collection[A]): AsScala[Iterable[A]]
Adds an
asScalamethod that implicitly converts a JavaCollectionto an ScalaIterable.Adds an
asScalamethod that implicitly converts a JavaCollectionto an ScalaIterable.- Definition Classes
- DecorateAsScala
- See also
-
def
dictionaryAsScalaMap[A, B](p: Dictionary[A, B]): mutable.Map[A, B]
Converts a Java
Dictionaryto a Scala mutableMap.Converts a Java
Dictionaryto a Scala mutableMap.The returned Scala
Mapis backed by the provided JavaDictionaryand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.If the Java
Dictionarywas previously obtained from an implicit or explicit call ofJavaConverters.asJavaDictionary(scala.collection.mutable.Map)then the original ScalaMapwill be returned.- p
The Java
Dictionaryto be converted.- returns
A Scala mutable
Mapview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
dictionaryAsScalaMapConverter[A, B](p: Dictionary[A, B]): AsScala[mutable.Map[A, B]]
Adds an
asScalamethod that implicitly converts a JavaDictionaryto a Scala mutableMap.Adds an
asScalamethod that implicitly converts a JavaDictionaryto a Scala mutableMap.- Definition Classes
- DecorateAsScala
- See also
-
def
enumerationAsScalaIterator[A](i: Enumeration[A]): Iterator[A]
Converts a Java
Enumerationto a ScalaIterator.Converts a Java
Enumerationto a ScalaIterator.The returned Scala
Iteratoris backed by the provided JavaEnumerationand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.If the Java
Enumerationwas previously obtained from an implicit or explicit call ofJavaConverters.asJavaEnumeration(scala.collection.Iterator)then the original ScalaIteratorwill be returned.- i
The Java
Enumerationto be converted.- returns
A Scala
Iteratorview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
enumerationAsScalaIteratorConverter[A](i: Enumeration[A]): AsScala[Iterator[A]]
Adds an
asScalamethod that implicitly converts a JavaEnumerationto a ScalaIterator.Adds an
asScalamethod that implicitly converts a JavaEnumerationto a ScalaIterator.- Definition Classes
- DecorateAsScala
- See also
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
iterableAsScalaIterable[A](i: java.lang.Iterable[A]): Iterable[A]
Converts a Java
Iterableto a ScalaIterable.Converts a Java
Iterableto a ScalaIterable.The returned Scala
Iterableis backed by the provided JavaIterableand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.If the Java
Iterablewas previously obtained from an implicit or explicit call ofJavaConverters.asJavaIterable(scala.collection.Iterable) then the original ScalaIterablewill be returned.- i
The Java
Iterableto be converted.- returns
A Scala
Iterableview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
iterableAsScalaIterableConverter[A](i: java.lang.Iterable[A]): AsScala[Iterable[A]]
Adds an
asScalamethod that implicitly converts a JavaIterableto a ScalaIterable.Adds an
asScalamethod that implicitly converts a JavaIterableto a ScalaIterable.- Definition Classes
- DecorateAsScala
- See also
-
def
mapAsJavaConcurrentMap[A, B](m: concurrent.Map[A, B]): ConcurrentMap[A, B]
Converts a Scala mutable
concurrent.Mapto a JavaConcurrentMap.Converts a Scala mutable
concurrent.Mapto a JavaConcurrentMap.The returned Java
ConcurrentMapis backed by the provided Scalaconcurrent.Mapand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
concurrent.Mapwas previously obtained from an implicit or explicit call ofJavaConverters.mapAsScalaConcurrentMap(java.util.concurrent.ConcurrentMap)then the original JavaConcurrentMapwill be returned.- m
The Scala
concurrent.Mapto be converted.- returns
A Java
ConcurrentMapview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
mapAsJavaConcurrentMapConverter[A, B](m: concurrent.Map[A, B]): AsJava[ConcurrentMap[A, B]]
Adds an
asJavamethod that implicitly converts a Scala mutableconcurrent.Mapto a JavaConcurrentMap.Adds an
asJavamethod that implicitly converts a Scala mutableconcurrent.Mapto a JavaConcurrentMap.- Definition Classes
- DecorateAsJava
- See also
-
def
mapAsJavaMap[A, B](m: Map[A, B]): java.util.Map[A, B]
Converts a Scala
Mapto a JavaMap.Converts a Scala
Mapto a JavaMap.The returned Java
Mapis backed by the provided ScalaMapand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Mapwas previously obtained from an implicit or explicit call ofJavaConverters.mapAsScalaMap(java.util.Map)then the original JavaMapwill be returned.- m
The Scala
Mapto be converted.- returns
A Java
Mapview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
mapAsJavaMapConverter[A, B](m: Map[A, B]): AsJava[java.util.Map[A, B]]
Adds an
asJavamethod that implicitly converts a ScalaMapto a JavaMap.Adds an
asJavamethod that implicitly converts a ScalaMapto a JavaMap.- Definition Classes
- DecorateAsJava
- See also
-
def
mapAsScalaConcurrentMap[A, B](m: ConcurrentMap[A, B]): concurrent.Map[A, B]
Converts a Java
ConcurrentMapto a Scala mutableConcurrentMap.Converts a Java
ConcurrentMapto a Scala mutableConcurrentMap.The returned Scala
ConcurrentMapis backed by the provided JavaConcurrentMapand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.If the Java
ConcurrentMapwas previously obtained from an implicit or explicit call ofJavaConverters.mapAsJavaConcurrentMap(scala.collection.mutable.ConcurrentMap)then the original ScalaConcurrentMapwill be returned.- m
The Java
ConcurrentMapto be converted.- returns
A Scala mutable
ConcurrentMapview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
mapAsScalaConcurrentMapConverter[A, B](m: ConcurrentMap[A, B]): AsScala[concurrent.Map[A, B]]
Adds an
asScalamethod that implicitly converts a JavaConcurrentMapto a Scala mutableconcurrent.Map.Adds an
asScalamethod that implicitly converts a JavaConcurrentMapto a Scala mutableconcurrent.Map.- Definition Classes
- DecorateAsScala
- See also
-
def
mapAsScalaMap[A, B](m: java.util.Map[A, B]): mutable.Map[A, B]
Converts a Java
Mapto a Scala mutableMap.Converts a Java
Mapto a Scala mutableMap.The returned Scala
Mapis backed by the provided JavaMapand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.If the Java
Mapwas previously obtained from an implicit or explicit call ofJavaConverters.mutableMapAsJavaMap(scala.collection.mutable.Map)then the original ScalaMapwill be returned.If the wrapped map is synchronized (e.g. from
java.util.Collections.synchronizedMap), it is your responsibility to wrap all non-atomic operations withunderlying.synchronized. This includesget, asjava.util.Map's API does not allow for an atomicgetwhennullvalues may be present.- m
The Java
Mapto be converted.- returns
A Scala mutable
Mapview of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
mapAsScalaMapConverter[A, B](m: java.util.Map[A, B]): AsScala[mutable.Map[A, B]]
Adds an
asScalamethod that implicitly converts a JavaMapto a Scala mutableMap.Adds an
asScalamethod that implicitly converts a JavaMapto a Scala mutableMap.- Definition Classes
- DecorateAsScala
- See also
-
def
mutableMapAsJavaMap[A, B](m: mutable.Map[A, B]): java.util.Map[A, B]
Converts a Scala mutable
Mapto a JavaMap.Converts a Scala mutable
Mapto a JavaMap.The returned Java
Mapis backed by the provided ScalaMapand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Mapwas previously obtained from an implicit or explicit call ofJavaConverters.mapAsScalaMap(java.util.Map)then the original JavaMapwill be returned.- m
The Scala mutable
Mapto be converted.- returns
A Java
Mapview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
mutableMapAsJavaMapConverter[A, B](m: mutable.Map[A, B]): AsJava[java.util.Map[A, B]]
Adds an
asJavamethod that implicitly converts a Scala mutableMapto a JavaMap.Adds an
asJavamethod that implicitly converts a Scala mutableMapto a JavaMap.- Definition Classes
- DecorateAsJava
- See also
-
def
mutableSeqAsJavaList[A](s: mutable.Seq[A]): List[A]
Converts a Scala mutable
Seqto a JavaList.Converts a Scala mutable
Seqto a JavaList.The returned Java
Listis backed by the provided ScalaSeqand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Seqwas previously obtained from an implicit or explicit call ofJavaConverters.asScalaBuffer(java.util.List)then the original JavaListwill be returned.- s
The Scala
Seqto be converted.- returns
A Java
Listview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
mutableSeqAsJavaListConverter[A](b: mutable.Seq[A]): AsJava[List[A]]
Adds an
asJavamethod that implicitly converts a Scala mutableSeqto a JavaList.Adds an
asJavamethod that implicitly converts a Scala mutableSeqto a JavaList.- Definition Classes
- DecorateAsJava
- See also
-
def
mutableSetAsJavaSet[A](s: mutable.Set[A]): java.util.Set[A]
Converts a Scala mutable
Setto a JavaSet.Converts a Scala mutable
Setto a JavaSet.The returned Java
Setis backed by the provided ScalaSetand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Setwas previously obtained from an implicit or explicit call ofJavaConverters.asScalaSet(java.util.Set)then the original JavaSetwill be returned.- s
The Scala mutable
Setto be converted.- returns
A Java
Setview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
mutableSetAsJavaSetConverter[A](s: mutable.Set[A]): AsJava[java.util.Set[A]]
Adds an
asJavamethod that implicitly converts a Scala mutableSetto a JavaSet.Adds an
asJavamethod that implicitly converts a Scala mutableSetto a JavaSet.- Definition Classes
- DecorateAsJava
- See also
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
propertiesAsScalaMap(p: Properties): mutable.Map[String, String]
Converts a Java
Propertiesto a Scala mutableMap[String, String].Converts a Java
Propertiesto a Scala mutableMap[String, String].The returned Scala
Map[String, String]is backed by the provided JavaPropertiesand any side-effects of using it via the Scala interface will be visible via the Java interface and vice versa.- p
The Java
Propertiesto be converted.- returns
A Scala mutable
Map[String, String]view of the argument.
- Definition Classes
- AsScalaConverters
-
implicit
def
propertiesAsScalaMapConverter(p: Properties): AsScala[mutable.Map[String, String]]
Adds an
asScalamethod that implicitly converts a JavaPropertiesto a Scala mutableMap[String, String].Adds an
asScalamethod that implicitly converts a JavaPropertiesto a Scala mutableMap[String, String].- Definition Classes
- DecorateAsScala
- See also
-
def
seqAsJavaList[A](s: Seq[A]): List[A]
Converts a Scala
Seqto a JavaList.Converts a Scala
Seqto a JavaList.The returned Java
Listis backed by the provided ScalaSeqand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Seqwas previously obtained from an implicit or explicit call ofJavaConverters.asScalaBuffer(java.util.List)then the original JavaListwill be returned.- s
The Scala
Seqto be converted.- returns
A Java
Listview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
seqAsJavaListConverter[A](b: Seq[A]): AsJava[List[A]]
Adds an
asJavamethod that implicitly converts a ScalaSeqto a JavaList.Adds an
asJavamethod that implicitly converts a ScalaSeqto a JavaList.- Definition Classes
- DecorateAsJava
- See also
-
def
setAsJavaSet[A](s: Set[A]): java.util.Set[A]
Converts a Scala
Setto a JavaSet.Converts a Scala
Setto a JavaSet.The returned Java
Setis backed by the provided ScalaSetand any side-effects of using it via the Java interface will be visible via the Scala interface and vice versa.If the Scala
Setwas previously obtained from an implicit or explicit call ofJavaConverters.asScalaSet(java.util.Set)then the original JavaSetwill be returned.- s
The Scala
Setto be converted.- returns
A Java
Setview of the argument.
- Definition Classes
- AsJavaConverters
-
implicit
def
setAsJavaSetConverter[A](s: Set[A]): AsJava[java.util.Set[A]]
Adds an
asJavamethod that implicitly converts a ScalaSetto a JavaSet.Adds an
asJavamethod that implicitly converts a ScalaSetto a JavaSet.- Definition Classes
- DecorateAsJava
- See also
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )