|
Scala 2.2.0
|
object
Source
extends
java.lang.Object with
scala.ScalaObjectConstructor Summary | |
def
this
|
Def Summary | |
def
fromBytes
(bytes: scala.Array[scala.Byte])
: scala.io.Source
Creates Source from array of bytes, with empty description. |
|
def
fromBytes
(bytes: scala.Array[scala.Byte], enc: java.lang.String)
: scala.io.Source
Creates Source from array of bytes with given encoding, with empty description. |
|
def
fromChar
(c: scala.Char)
: scala.io.Source
Creates Source from a single character. |
|
def
fromChars
(chars: scala.Array[scala.Char])
: scala.io.Source
creates Source from array of characters, with empty description. |
|
def
fromFile
(file: java.io.File)
: scala.io.Source
creates Source from file, using default character encoding, setting its description to filename. |
|
def
fromFile
(file: java.io.File, enc: java.lang.String)
: scala.io.Source
Creates Source from file, using given character encoding, setting its description to filename. |
|
def
fromFile
(name: java.lang.String)
: scala.io.Source
creates Source from file with given name, setting its description to filename. |
|
def
fromFile
(name: java.lang.String, enc: java.lang.String)
: scala.io.Source
creates Source from file with given name, using given encoding, setting its description to filename. |
|
def
fromFile
(uri: java.net.URI)
: scala.io.Source
creates Source from file with given file: URI |
|
def
fromString
(s: java.lang.String)
: scala.io.Source
creates Source from string, with empty description. |
|
def
fromURL
(s: java.lang.String)
: scala.io.Source
|
|
def
fromURL
(url: java.net.URL)
: scala.io.Source
|
|
def
setFileDescriptor
(file: java.io.File, s: scala.io.Source)
: scala.io.Source
|
Constructor Detail |
def
this
Def Detail |
def
fromBytes
(bytes: scala.Array[scala.Byte]): scala.io.Source
bytes -
...
def
fromBytes
(bytes: scala.Array[scala.Byte], enc: java.lang.String): scala.io.Source
bytes -
...
enc -
...
def
fromChar
(c: scala.Char): scala.io.Source
c -
...
def
fromChars
(chars: scala.Array[scala.Char]): scala.io.Source
chars -
...
def
fromFile
(file: java.io.File): scala.io.Source
def
fromFile
(file: java.io.File, enc: java.lang.String): scala.io.Source
file -
...
enc -
...
def
fromFile
(name: java.lang.String): scala.io.Source
def
fromFile
(name: java.lang.String, enc: java.lang.String): scala.io.Source
def
fromFile
(uri: java.net.URI): scala.io.Source
def
fromString
(s: java.lang.String): scala.io.Source
s -
...
def
fromURL
(s: java.lang.String): scala.io.Source
def
fromURL
(url: java.net.URL): scala.io.Source
def
setFileDescriptor
(file: java.io.File, s: scala.io.Source): scala.io.Source
file -
...
s -
...