Object/Trait

upickle.json

Js

Related Docs: trait Js | package json

Permalink

object Js extends Transformer[Js]

A very small, very simple JSON AST that uPickle uses as part of its serialization process. A common standard between the Jawn AST (which we don't use so we don't pull in the bulk of Spire) and the Javascript JSON AST.

Linear Supertypes
Transformer[Js], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Js
  2. Transformer
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Arr(value: IndexedSeq[Value]) extends Transformable with Value with Product with Serializable

    Permalink
  2. case class InvalidData(data: Value, msg: String) extends Exception with Product with Serializable

    Permalink

    Thrown when uPickle tries to convert a JSON blob into a given data structure but fails because part the blob is invalid

    Thrown when uPickle tries to convert a JSON blob into a given data structure but fails because part the blob is invalid

    data

    The section of the JSON blob that uPickle tried to convert. This could be the entire blob, or it could be some subtree.

    msg

    Human-readable text saying what went wrong

  3. case class Num(value: Double) extends Transformable with Value with Product with Serializable

    Permalink
  4. case class Obj(value: Map[String, Value]) extends Transformable with Value with Product with Serializable

    Permalink
  5. case class Str(value: String) extends Transformable with Value with Product with Serializable

    Permalink
  6. type Value = Js

    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. object Arr extends Serializable

    Permalink
  5. object Builder extends Visitor[Value, Value]

    Permalink
  6. object False extends Transformable with Value with Product with Serializable

    Permalink
  7. object Null extends Transformable with Value with Product with Serializable

    Permalink
  8. object Obj extends Serializable

    Permalink
  9. object True extends Transformable with Value with Product with Serializable

    Permalink
  10. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. def reject(j: Int, path: List[Any]): PartialFunction[Throwable, Nothing]

    Permalink
  22. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def transform[T](j: Value, f: Visitor[_, T]): T

    Permalink
    Definition Classes
    JsTransformer
  25. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Transformer[Js]

Inherited from AnyRef

Inherited from Any

Ungrouped