Packages

class Codec extends AnyRef

A class for character encoding/decoding preferences.

Source
Codec.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Codec
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Codec(charSet: Charset)

Type Members

  1. type Configure[T] = ((T) ⇒ T, Boolean)
  2. type Handler = (CharacterCodingException) ⇒ Int

Value Members

  1. val charSet: Charset
  2. def decoder: CharsetDecoder
  3. def decodingReplaceWith(newReplacement: String): Codec.this.type
  4. def encoder: CharsetEncoder
  5. def encodingReplaceWith(newReplacement: Array[Byte]): Codec.this.type
  6. def name: String
  7. def onCodingException(handler: Handler): Codec.this.type
  8. def onMalformedInput(newAction: CodingErrorAction): Codec.this.type
  9. def onUnmappableCharacter(newAction: CodingErrorAction): Codec.this.type
  10. def toString(): String

    The name of the Codec.

    The name of the Codec.

    returns

    a String representation of the object.

    Definition Classes
    Codec → AnyRef → Any
  11. def wrap(body: ⇒ Int): Int