trait AsJavaConverters extends AnyRef
Defines converter methods from Scala to Java collections.
- Alphabetic
- By Inheritance
- 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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
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
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
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.
-
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.
-
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.
-
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.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
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.
-
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.
-
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
- @throws( ... )