object JavaConverters extends DecorateAsJava with DecorateAsScala
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
scala.collection.Iterable <=> java.lang.Iterable scala.collection.Iterator <=> java.util.Iterator scala.collection.mutable.Buffer <=> java.util.List scala.collection.mutable.Set <=> java.util.Set scala.collection.mutable.Map <=> java.util.Map scala.collection.mutable.concurrent.Map <=> java.util.concurrent.ConcurrentMap
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.
scala.collection.Iterable <=> java.util.Collection scala.collection.Iterator <=> java.util.Enumeration scala.collection.mutable.Map <=> java.util.Dictionary
In addition, the following one way conversions are provided via asJava:
scala.collection.Seq => java.util.List scala.collection.mutable.Seq => java.util.List scala.collection.Set => java.util.Set scala.collection.Map => java.util.Map
The following one way conversion is provided via asScala:
java.util.Properties => scala.collection.mutable.Map
- Source
- JavaConverters.scala
- Since
2.8.1
- Alphabetic
- By Inheritance
- JavaConverters
- DecorateAsScala
- DecorateAsJava
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
Test two objects for inequality.
Test two objects for inequality.
- returns
trueif !(this == that), false otherwise.
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
Equivalent to
x.hashCodeexcept for boxed numeric types andnull.Equivalent to
x.hashCodeexcept for boxed numeric types andnull. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. Fornullreturns a hashcode wherenull.hashCodethrows aNullPointerException.- returns
a hash value consistent with ==
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
The expression
x == thatis equivalent toif (x eq null) that eq null else x.equals(that).The expression
x == thatis equivalent toif (x eq null) that eq null else x.equals(that).- returns
trueif the receiver object is equivalent to the argument;falseotherwise.
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
Cast the receiver object to be of type
T0.Cast the receiver object to be of type
T0.Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression
1.asInstanceOf[String]will throw aClassCastExceptionat runtime, while the expressionList(1).asInstanceOf[List[String]]will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.- returns
the receiver object.
- Definition Classes
- Any
- Exceptions thrown
ClassCastExceptionif the receiver object is not an instance of the erasure of typeT0.
-
implicit
def
asJavaCollectionConverter[A](i: Iterable[A]): convert.Decorators.AsJavaCollection[A]
Adds an
asJavaCollectionmethod that implicitly converts a ScalaIterableto an immutable JavaCollection.Adds an
asJavaCollectionmethod that implicitly converts a ScalaIterableto an immutable JavaCollection.If the Scala
Iterablewas previously obtained from an implicit or explicit call ofasSizedIterable(java.util.Collection)then the original JavaCollectionwill be returned.- i
The
SizedIterableto be converted.- returns
An object with an
asJavamethod that returns a JavaCollectionview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
asJavaDictionaryConverter[A, B](m: mutable.Map[A, B]): convert.Decorators.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.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 ofasMap(java.util.Dictionary)then the original JavaDictionarywill be returned.- m
The
Mapto be converted.- returns
An object with an
asJavaDictionarymethod that returns a JavaDictionaryview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
asJavaEnumerationConverter[A](i: Iterator[A]): convert.Decorators.AsJavaEnumeration[A]
Adds an
asJavaEnumerationmethod that implicitly converts a ScalaIteratorto a JavaEnumeration.Adds an
asJavaEnumerationmethod that implicitly converts a ScalaIteratorto a JavaEnumeration. The returned JavaEnumerationis 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 ofasIterator(java.util.Enumeration)then the original JavaEnumerationwill be returned.- i
The
Iteratorto be converted.- returns
An object with an
asJavaEnumerationmethod that returns a JavaEnumerationview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
asJavaIterableConverter[A](i: Iterable[A]): convert.Decorators.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.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 ofasIterable(java.lang.Iterable)then the original JavaIterablewill be returned.- i
The
Iterableto be converted.- returns
An object with an
asJavaCollectionmethod that returns a JavaIterableview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
asJavaIteratorConverter[A](i: Iterator[A]): convert.Decorators.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. The returned JavaIteratoris 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 ofasIterator(java.util.Iterator)then the original JavaIteratorwill be returned by theasJavamethod.- i
The
Iteratorto be converted.- returns
An object with an
asJavamethod that returns a JavaIteratorview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
asScalaBufferConverter[A](l: java.util.List[A]): convert.Decorators.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.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 ofasList(scala.collection.mutable.Buffer)then the original ScalaBufferwill be returned.- l
The
Listto be converted.- returns
An object with an
asScalamethod that returns a Scala mutableBufferview of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
asScalaIteratorConverter[A](i: java.util.Iterator[A]): convert.Decorators.AsScala[Iterator[A]]
Adds an
asScalamethod that implicitly converts a JavaIteratorto a ScalaIterator.Adds an
asScalamethod that implicitly converts a JavaIteratorto 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 ofasIterator(scala.collection.Iterator)then the original ScalaIteratorwill be returned.- i
The
Iteratorto be converted.- returns
An object with an
asScalamethod that returns a ScalaIteratorview of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
asScalaSetConverter[A](s: java.util.Set[A]): convert.Decorators.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.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 ofasSet(scala.collection.mutable.Set)then the original ScalaSetwill be returned.- s
The
Setto be converted.- returns
An object with an
asScalamethod that returns a Scala mutableSetview of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
bufferAsJavaListConverter[A](b: Buffer[A]): convert.Decorators.AsJava[java.util.List[A]]
Adds an
asJavamethod that implicitly converts a Scala mutableBufferto a JavaList.Adds an
asJavamethod that implicitly converts a Scala mutableBufferto a JavaList.The returned Java
Listis backed by the provided ScalaBufferand 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 ofasBuffer(java.util.List)then the original JavaListwill be returned.- b
The
Bufferto be converted.- returns
An object with an
asJavamethod that returns a JavaListview of the argument.
- Definition Classes
- DecorateAsJava
-
def
clone(): AnyRef
Create a copy of the receiver object.
-
implicit
def
collectionAsScalaIterableConverter[A](i: Collection[A]): convert.Decorators.AsScala[Iterable[A]]
Adds an
asScalamethod that implicitly converts a JavaCollectionto an ScalaIterable.Adds an
asScalamethod that implicitly converts a JavaCollectionto an ScalaIterable.If the Java
Collectionwas previously obtained from an implicit or explicit call ofasCollection(scala.collection.SizedIterable)then the original ScalaSizedIterablewill be returned.- i
The
Collectionto be converted.- returns
An object with an
asScalamethod that returns a ScalaSizedIterableview of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
dictionaryAsScalaMapConverter[A, B](p: Dictionary[A, B]): convert.Decorators.AsScala[mutable.Map[A, B]]
Adds an
asScalamethod that implicitly converts a JavaDictionaryto a Scala mutableMap[String, String].Adds an
asScalamethod that implicitly converts a JavaDictionaryto a Scala mutableMap[String, String]. The returned ScalaMap[String, String]is 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.- p
The
Dictionaryto be converted.- returns
An object with an
asScalamethod that returns a Scala mutableMap[String, String]view of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
enumerationAsScalaIteratorConverter[A](i: java.util.Enumeration[A]): convert.Decorators.AsScala[Iterator[A]]
Adds an
asScalamethod that implicitly converts a JavaEnumerationto a ScalaIterator.Adds an
asScalamethod that implicitly converts a JavaEnumerationto 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 ofasEnumeration(scala.collection.Iterator)then the original ScalaIteratorwill be returned.- i
The
Enumerationto be converted.- returns
An object with an
asScalamethod that returns a ScalaIteratorview of the argument.
- Definition Classes
- DecorateAsScala
-
final
def
eq(arg0: AnyRef): Boolean
Tests whether the argument (
that) is a reference to the receiver object (this).Tests whether the argument (
that) is a reference to the receiver object (this).The
eqmethod implements an equivalence relation on non-null instances ofAnyRef, and has three additional properties:- It is consistent: for any non-null instances
xandyof typeAnyRef, multiple invocations ofx.eq(y)consistently returnstrueor consistently returnsfalse. - For any non-null instance
xof typeAnyRef,x.eq(null)andnull.eq(x)returnsfalse. null.eq(null)returnstrue.
When overriding the
equalsorhashCodemethods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).- returns
trueif the argument is a reference to the receiver object;falseotherwise.
- Definition Classes
- AnyRef
- It is consistent: for any non-null instances
-
def
equals(arg0: Any): Boolean
The equality method for reference types.
-
def
finalize(): Unit
Called by the garbage collector on the receiver object when there are no more references to the object.
Called by the garbage collector on the receiver object when there are no more references to the object.
The details of when and if the
finalizemethod is invoked, as well as the interaction betweenfinalizeand non-local returns and exceptions, are all platform dependent. -
final
def
getClass(): Class[_]
Returns the runtime class representation of the object.
Returns the runtime class representation of the object.
- returns
a class object corresponding to the runtime type of the receiver.
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
The hashCode method for reference types.
-
final
def
isInstanceOf[T0]: Boolean
Test whether the dynamic type of the receiver object is
T0.Test whether the dynamic type of the receiver object is
T0.Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression
1.isInstanceOf[String]will returnfalse, while the expressionList(1).isInstanceOf[List[String]]will returntrue. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.- returns
trueif the receiver object is an instance of erasure of typeT0;falseotherwise.
- Definition Classes
- Any
-
implicit
def
iterableAsScalaIterableConverter[A](i: java.lang.Iterable[A]): convert.Decorators.AsScala[Iterable[A]]
Adds an
asScalamethod that implicitly converts a JavaIterableto a ScalaIterable.Adds an
asScalamethod that implicitly converts a JavaIterableto 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 ofasIterable(scala.collection.Iterable)then the original ScalaIterablewill be returned.- i
The
Iterableto be converted.- returns
An object with an
asScalamethod that returns a ScalaIterableview of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
mapAsJavaConcurrentMapConverter[A, B](m: concurrent.Map[A, B]): convert.Decorators.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.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 ofasConcurrentMap(java.util.concurrent.ConcurrentMap)then the original JavaConcurrentMapwill be returned.- m
The Scala
concurrent.Mapto be converted.- returns
An object with an
asJavamethod that returns a JavaConcurrentMapview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
mapAsJavaMapConverter[A, B](m: Map[A, B]): convert.Decorators.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.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 ofasMap(java.util.Map)then the original JavaMapwill be returned.- m
The
Mapto be converted.- returns
An object with an
asJavamethod that returns a JavaMapview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
mapAsScalaConcurrentMapConverter[A, B](m: ConcurrentMap[A, B]): convert.Decorators.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. The returned Scalaconcurrent.Mapis 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 ofmapAsScalaConcurrentMap(scala.collection.mutable.ConcurrentMap)then the original Scalaconcurrent.Mapwill be returned.- m
The
ConcurrentMapto be converted.- returns
An object with an
asScalamethod that returns a Scala mutableconcurrent.Mapview of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
mapAsScalaMapConverter[A, B](m: java.util.Map[A, B]): convert.Decorators.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. The returned ScalaMapis 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 ofasMap(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
Mapto be converted.- returns
An object with an
asScalamethod that returns a Scala mutableMapview of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
mutableMapAsJavaMapConverter[A, B](m: mutable.Map[A, B]): convert.Decorators.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.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 ofasMap(java.util.Map)then the original JavaMapwill be returned.- m
The
Mapto be converted.- returns
An object with an
asJavamethod that returns a JavaMapview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
mutableSeqAsJavaListConverter[A](b: mutable.Seq[A]): convert.Decorators.AsJava[java.util.List[A]]
Adds an
asJavamethod that implicitly converts a Scala mutableSeqto a JavaList.Adds an
asJavamethod that implicitly converts a Scala mutableSeqto 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 ofasSeq(java.util.List)then the original JavaListwill be returned.- b
The
Seqto be converted.- returns
An object with an
asJavamethod that returns a JavaListview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
mutableSetAsJavaSetConverter[A](s: mutable.Set[A]): convert.Decorators.AsJava[java.util.Set[A]]
Adds an
asJavamethod that implicitly converts a Scala mutableSet> to a JavaSet.Adds an
asJavamethod that implicitly converts a Scala mutableSet> to 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 ofasSet(java.util.Set)then the original JavaSetwill be returned.- s
The
Setto be converted.- returns
An object with an
asJavamethod that returns a JavaSetview of the argument.
- Definition Classes
- DecorateAsJava
-
final
def
ne(arg0: AnyRef): Boolean
Equivalent to
!(this eq that).Equivalent to
!(this eq that).- returns
trueif the argument is not a reference to the receiver object;falseotherwise.
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
Wakes up a single thread that is waiting on the receiver object's monitor.
Wakes up a single thread that is waiting on the receiver object's monitor.
- Definition Classes
- AnyRef
- Note
not specified by SLS as a member of AnyRef
-
final
def
notifyAll(): Unit
Wakes up all threads that are waiting on the receiver object's monitor.
Wakes up all threads that are waiting on the receiver object's monitor.
- Definition Classes
- AnyRef
- Note
not specified by SLS as a member of AnyRef
-
implicit
def
propertiesAsScalaMapConverter(p: Properties): convert.Decorators.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]. The returned ScalaMap[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
Propertiesto be converted.- returns
An object with an
asScalamethod that returns a Scala mutableMap[String, String]view of the argument.
- Definition Classes
- DecorateAsScala
-
implicit
def
seqAsJavaListConverter[A](b: Seq[A]): convert.Decorators.AsJava[java.util.List[A]]
Adds an
asJavamethod that implicitly converts a ScalaSeqto a JavaList.Adds an
asJavamethod that implicitly converts a ScalaSeqto 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 ofasSeq(java.util.List)then the original JavaListwill be returned.- b
The
Seqto be converted.- returns
An object with an
asJavamethod that returns a JavaListview of the argument.
- Definition Classes
- DecorateAsJava
-
implicit
def
setAsJavaSetConverter[A](s: Set[A]): convert.Decorators.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.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 ofasSet(java.util.Set)then the original JavaSetwill be returned.- s
The
Setto be converted.- returns
An object with an
asJavamethod that returns a JavaSetview of the argument.
- Definition Classes
- DecorateAsJava
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
Creates a String representation of this object.
Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.
- returns
a String representation of the object.
- 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( ... )
This is the documentation for the Scala standard library.
Package structure
The scala package contains core types like
Int,Float,ArrayorOptionwhich are accessible in all Scala compilation units without explicit qualification or imports.Notable packages include:
scala.collectionand its sub-packages contain Scala's collections frameworkscala.collection.immutable- Immutable, sequential data-structures such asVector,List,Range,HashMaporHashSetscala.collection.mutable- Mutable, sequential data-structures such asArrayBuffer,StringBuilder,HashMaporHashSetscala.collection.concurrent- Mutable, concurrent data-structures such asTrieMapscala.collection.parallel.immutable- Immutable, parallel data-structures such asParVector,ParRange,ParHashMaporParHashSetscala.collection.parallel.mutable- Mutable, parallel data-structures such asParArray,ParHashMap,ParTrieMaporParHashSetscala.concurrent- Primitives for concurrent programming such asFuturesandPromisesscala.io- Input and output operationsscala.math- Basic math functions and additional numeric types likeBigIntandBigDecimalscala.sys- Interaction with other processes and the operating systemscala.util.matching- Regular expressionsOther packages exist. See the complete list on the left.
Additional parts of the standard library are shipped as separate libraries. These include:
scala.reflect- Scala's reflection API (scala-reflect.jar)scala.xml- XML parsing, manipulation, and serialization (scala-xml.jar)scala.swing- A convenient wrapper around Java's GUI framework called Swing (scala-swing.jar)scala.util.parsing- Parser combinators, including an example implementation of a JSON parser (scala-parser-combinators.jar)Automatic imports
Identifiers in the scala package and the
scala.Predefobject are always in scope by default.Some of these identifiers are type aliases provided as shortcuts to commonly used classes. For example,
Listis an alias forscala.collection.immutable.List.Other aliases refer to classes provided by the underlying platform. For example, on the JVM,
Stringis an alias forjava.lang.String.