object Codec

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Codec
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ArrayCodec[A](elemCodec: Codec[A])(implicit evidence$3: ClassTag[A]) extends Codec[Array[A]] with Product with Serializable
  2. case class CValueCodec[A](cType: CValueType[A])(implicit codec: Codec[A]) extends Codec[CWrappedValue[A]] with Product with Serializable

    A Codec that can (un)wrap CValues of type CValueType.

  3. case class CompositeCodec[A, B, C](codecA: Codec[A], codecB: Codec[B], from: (C) ⇒ (A, B), to: (A, B) ⇒ C) extends Codec[C] with Product with Serializable
  4. case class ConstCodec[A](a: A) extends FixedWidthCodec[A] with Product with Serializable
  5. trait FixedWidthCodec[A] extends Codec[A]
  6. final class IndexedSeqCodec[A] extends Codec[IndexedSeq[A]]
  7. case class SparseBitSetCodec(size: Int) extends Codec[BitSet] with Product with Serializable
  8. case class SparseRawBitSetCodec(size: Int) extends Codec[Array[Int]] with Product with Serializable
  9. trait StatefulCodec extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit val BigDecimalCodec: Codec[BigDecimal]
  5. implicit val BitSetCodec: Codec[BitSet]
  6. implicit def IndexedSeqCodec[A](implicit elemCodec: Codec[A]): IndexedSeqCodec[A]
  7. implicit val JBigDecimalCodec: CompositeCodec[Array[Byte], Long, BigDecimal]
  8. implicit val LocalDateTimeCodec: Codec[LocalDateTime]
  9. implicit val PeriodCodec: Codec[blueeyes.Period]
  10. implicit val ZonedDateTimeCodec: Codec[ZonedDateTime]
  11. final def apply[A](implicit codec: Codec[A]): Codec[A]
    Annotations
    @inline()
  12. implicit def arrayCodec[A](implicit arg0: Codec[A], arg1: ClassTag[A]): Codec[Array[A]]
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def readPackedInt(buf: ByteBuffer): Int
  25. def sizePackedInt(n: Int, size: Int = 1): Int
    Annotations
    @tailrec()
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  31. def wrappedWriteInit[AA](a: AA, sink: ByteBuffer)(implicit _codec: Codec[AA]): Option[State]
  32. def writePackedInt(n: Int, buf: ByteBuffer): Unit
    Annotations
    @tailrec()
  33. def writeToArray[A](a: A)(implicit codec: Codec[A]): Array[Byte]

    A utility method for getting the encoded version of a as an array of bytes.

  34. implicit object BooleanCodec extends FixedWidthCodec[Boolean] with Product with Serializable
  35. implicit object ByteCodec extends FixedWidthCodec[Byte] with Product with Serializable
  36. implicit object DoubleCodec extends FixedWidthCodec[Double] with Product with Serializable
  37. object LongCodec extends FixedWidthCodec[Long] with Product with Serializable
  38. implicit object PackedLongCodec extends Codec[Long] with Product with Serializable
  39. implicit object Utf8Codec extends Codec[String] with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped