rapture

codec

package codec

Visibility
  1. Public
  2. All

Type Members

  1. trait Base32 extends CodecType

  2. trait Base64 extends CodecType

  3. class Base64Codec[C <: CodecType] extends ByteCodec[C]

    RFC2045 base-64 codec, based on http://migbase64.sourceforge.net/.

  4. trait Base64Url extends CodecType

  5. trait Binary extends CodecType

  6. trait ByteCodec[Codec <: CodecType] extends AnyRef

  7. case class Bytes(bytes: Array[Byte]) extends Product with Serializable

  8. trait CodecMethods extends ModeGroup

  9. trait CodecType extends AnyRef

  10. case class DecodeException(position: Option[Int]) extends Exception with Product with Serializable

  11. case class Encoding(name: String) extends Product with Serializable

    Annotations
    @implicitNotFound( ... )
  12. trait FromBytes[T] extends AnyRef

  13. trait Hex extends CodecType

Value Members

  1. object ByteCodec

  2. object Bytes extends Serializable

  3. object FromBytes

  4. object decode

  5. object encodings

    Provides references to standard character encodings provided by Java.

    Provides references to standard character encodings provided by Java. Encodings are represented by instances of the Encoding case class, which is a simple wrapper over a String of the encoding's name. Several standard encodings are provided and identified by the encoding's canonical name for the avoidance of ambiguity. These instances will typically require escaping with backticks in order to be referenced, however type safety will be ensured.

Ungrouped