Scala Library
|
|
scala/io/Codec.scala
]
class
Codec(val
charSet : java.nio.charset.Charset)
extends
AnyRefType Summary | |
type
|
Configure |
type
|
Handler |
Method Summary | |
def
|
decoder : java.nio.charset.CharsetDecoder |
def
|
decodingReplaceWith (newReplacement : java.lang.String) : Codec |
def
|
encoder : java.nio.charset.CharsetEncoder |
def
|
encodingReplaceWith (newReplacement : Array[Byte]) : Codec |
def
|
name : java.lang.String |
def
|
onCodingException (handler : Function1) : Codec |
def
|
onMalformedInput (newAction : java.nio.charset.CodingErrorAction) : Codec |
def
|
onUnmappableCharacter (newAction : java.nio.charset.CodingErrorAction) : Codec |
def
|
wrap (body : => Int) : Int |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Type Details |
Method Details |
def
onMalformedInput(newAction : java.nio.charset.CodingErrorAction) : Codec
def
onUnmappableCharacter(newAction : java.nio.charset.CodingErrorAction) : Codec
def
decodingReplaceWith(newReplacement : java.lang.String) : Codec
def
name : java.lang.String
def
encoder : java.nio.charset.CharsetEncoder
def
decoder : java.nio.charset.CharsetDecoder
Scala Library
|
|