trait DecorateAsJava extends AsJavaConverters
- Alphabetic
- By Inheritance
- 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.- 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.- 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.- 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.- 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.- 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.- See also
-
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.
- 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.- 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.- 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.- 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.- See also
-
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.
- 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.- 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.- 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
- @throws( ... )