Packages

class Decoder extends AnyRef

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

Instance Constructors

  1. new Decoder(chunk: Chunk[Byte])

Type Members

  1. case class Error(path: Path, error: String) extends Product with Serializable
  2. type Path = Chunk[String]
  3. type PrimitiveResult[A] = (Path) ⇒ Result[A]
  4. type Result[A] = Either[Error, A]

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. def decode[A](path: Path, schema: Schema[A]): Result[A]
  7. def decodeBigInteger: PrimitiveResult[BigInteger]
  8. def decodeBinary: PrimitiveResult[Chunk[Byte]]
  9. def decodeBoolean: PrimitiveResult[Boolean]
  10. def decodeByte: PrimitiveResult[Byte]
  11. def decodeDouble: PrimitiveResult[Double]
  12. def decodeFloat: PrimitiveResult[Float]
  13. def decodeInt: PrimitiveResult[Int]
  14. def decodeLong: PrimitiveResult[Long]
  15. def decodeMap[K, V](path: Path, schema: MapSchema[K, V]): Result[Map[K, V]]
  16. def decodePrimitive[A](f: (TProtocol) ⇒ A, name: String): PrimitiveResult[A]
  17. def decodeSequence[Col, Elem](path: Path, schema: Sequence[Col, Elem, _]): Result[Col]
  18. def decodeSet[A](path: Path, schema: SetSchema[A]): Result[Set[A]]
  19. def decodeShort: PrimitiveResult[Short]
  20. def decodeString: PrimitiveResult[String]
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  23. def fail(path: Path, failure: String): Result[Nothing]
  24. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. val p: TBinaryProtocol
  32. val read: Read
  33. def structDecoder(fields: Seq[Schema[_]], path: Path): Result[ListMap[Short, Any]]
  34. def succeed[A](a: ⇒ A): Result[A]
  35. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped