Object/Trait

quasar.precog.common

Codec

Related Docs: trait Codec | package common

Permalink

object Codec

Linear Supertypes
AnyRef, Any
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: CTag[A]) extends Codec[Array[A]] with Product with Serializable

    Permalink
  2. case class CValueCodec[A](cType: CValueType[A])(implicit codec: Codec[A]) extends Codec[CWrappedValue[A]] with Product with Serializable

    Permalink

    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

    Permalink
  4. case class ConstCodec[A](a: A) extends FixedWidthCodec[A] with Product with Serializable

    Permalink
  5. trait FixedWidthCodec[A] extends Codec[A]

    Permalink
  6. final class IndexedSeqCodec[A] extends Codec[IndexedSeq[A]]

    Permalink
  7. case class SparseBitSetCodec(size: Int) extends Codec[blueeyes.BitSet] with Product with Serializable

    Permalink
  8. case class SparseRawBitSetCodec(size: Int) extends Codec[RawBitSet] with Product with Serializable

    Permalink
  9. trait StatefulCodec extends AnyRef

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit val BigDecimalCodec: Codec[BigDecimal]

    Permalink
  5. implicit val BitSetCodec: Codec[blueeyes.BitSet]

    Permalink
  6. implicit object BooleanCodec extends FixedWidthCodec[Boolean] with Product with Serializable

    Permalink
  7. implicit object ByteCodec extends FixedWidthCodec[Byte] with Product with Serializable

    Permalink
  8. implicit val DateCodec: Codec[LocalDateTime]

    Permalink
  9. implicit object DoubleCodec extends FixedWidthCodec[Double] with Product with Serializable

    Permalink
  10. implicit def IndexedSeqCodec[A](implicit elemCodec: Codec[A]): IndexedSeqCodec[A]

    Permalink
  11. implicit val JBigDecimalCodec: CompositeCodec[Array[Byte], Long, BigDecimal]

    Permalink
  12. object LongCodec extends FixedWidthCodec[Long] with Product with Serializable

    Permalink
  13. implicit object PackedLongCodec extends Codec[Long] with Product with Serializable

    Permalink
  14. implicit val PeriodCodec: Codec[blueeyes.Period]

    Permalink
  15. implicit object Utf8Codec extends Codec[String] with Product with Serializable

    Permalink
  16. final def apply[A](implicit codec: Codec[A]): Codec[A]

    Permalink
    Annotations
    @inline()
  17. implicit def arrayCodec[A](implicit arg0: Codec[A], arg1: CTag[A]): Codec[Array[A]]

    Permalink
  18. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  19. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. def readPackedInt(buf: ByteBuffer): Int

    Permalink
  30. def sizePackedInt(n: Int, size: Int = 1): Int

    Permalink
    Annotations
    @tailrec()
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def wrappedWriteInit[AA](a: AA, sink: ByteBuffer)(implicit _codec: Codec[AA]): Option[State]

    Permalink
  37. def writePackedInt(n: Int, buf: ByteBuffer): Unit

    Permalink
    Annotations
    @tailrec()
  38. def writeToArray[A](a: A)(implicit codec: Codec[A]): Array[Byte]

    Permalink

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

Inherited from AnyRef

Inherited from Any

Ungrouped