object Codec
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Codec
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class ArrayCodec[A](elemCodec: Codec[A])(implicit evidence$3: ClassTag[A]) extends Codec[Array[A]] with Product with Serializable
-
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.
- 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
- case class ConstCodec[A](a: A) extends FixedWidthCodec[A] with Product with Serializable
- trait FixedWidthCodec[A] extends Codec[A]
- final class IndexedSeqCodec[A] extends Codec[IndexedSeq[A]]
- case class SparseBitSetCodec(size: Int) extends Codec[BitSet] with Product with Serializable
- case class SparseRawBitSetCodec(size: Int) extends Codec[Array[Int]] with Product with Serializable
- trait StatefulCodec extends AnyRef
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val BigDecimalCodec: Codec[BigDecimal]
- implicit val BitSetCodec: Codec[BitSet]
- implicit def IndexedSeqCodec[A](implicit elemCodec: Codec[A]): IndexedSeqCodec[A]
- implicit val JBigDecimalCodec: CompositeCodec[Array[Byte], Long, BigDecimal]
- implicit val LocalDateTimeCodec: Codec[LocalDateTime]
- implicit val PeriodCodec: Codec[blueeyes.Period]
- implicit val ZonedDateTimeCodec: Codec[ZonedDateTime]
-
final
def
apply[A](implicit codec: Codec[A]): Codec[A]
- Annotations
- @inline()
- implicit def arrayCodec[A](implicit arg0: Codec[A], arg1: ClassTag[A]): Codec[Array[A]]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def readPackedInt(buf: ByteBuffer): Int
-
def
sizePackedInt(n: Int, size: Int = 1): Int
- Annotations
- @tailrec()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def wrappedWriteInit[AA](a: AA, sink: ByteBuffer)(implicit _codec: Codec[AA]): Option[State]
-
def
writePackedInt(n: Int, buf: ByteBuffer): Unit
- Annotations
- @tailrec()
-
def
writeToArray[A](a: A)(implicit codec: Codec[A]): Array[Byte]
A utility method for getting the encoded version of
aas an array of bytes. - implicit object BooleanCodec extends FixedWidthCodec[Boolean] with Product with Serializable
- implicit object ByteCodec extends FixedWidthCodec[Byte] with Product with Serializable
- implicit object DoubleCodec extends FixedWidthCodec[Double] with Product with Serializable
- object LongCodec extends FixedWidthCodec[Long] with Product with Serializable
- implicit object PackedLongCodec extends Codec[Long] with Product with Serializable
- implicit object Utf8Codec extends Codec[String] with Product with Serializable