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[BitSet] with Product with Serializable

    Permalink
  8. case class SparseRawBitSetCodec(size: Int) extends Codec[Array[Int]] 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[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 object DoubleCodec extends FixedWidthCodec[Double] with Product with Serializable

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

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

    Permalink
  11. implicit val LocalDateTimeCodec: Codec[LocalDateTime]

    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. implicit val ZonedDateTimeCodec: Codec[ZonedDateTime]

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

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

    Permalink
  19. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Annotations
    @tailrec()
  39. 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