|
Scala
1.3.0.2 |
|||
Method Summary | |
final
|
def fromBytes(bytes: Array[Byte]): Source
creates Source from array of bytes, with empty description |
final
|
def fromBytes(bytes: Array[Byte], enc: String): Source
creates Source from array of bytes with given encoding, with empty description |
final
|
def fromChars(chars: Array[Char]): Source
creates Source from array of characters, with empty description |
final
|
def fromFile(name: String): Source
creates Source from file with given name, setting its description to filename. |
final
|
def fromFile(name: String, enc: String): Source
creates Source from file with given name, using given encoding, setting its description to filename. |
final
|
def fromFile(file: java.io.File): Source
creates Source from file, using default character encoding, setting its description to filename. |
final
|
def fromFile(file: java.io.File, enc: String): Source
creates Source from file, using given character encoding, setting its description to filename. |
final
|
def fromString(s: String): Source
creates Source from string, with empty description |
Method Detail |
final def fromBytes(bytes: Array[Byte]): Source
final def fromBytes(bytes: Array[Byte], enc: String): Source
final def fromChars(chars: Array[Char]): Source
final def fromString(s: String): Source
final def fromFile(name: String): Source
final def fromFile(name: String, enc: String): Source
final def fromFile(file: java.io.File): Source
final def fromFile(file: java.io.File, enc: String): Source
|
Scala
1.3.0.2 |
|||