object Msg extends MsgVisitor[Msg, Msg]

Linear Supertypes
MsgVisitor[Msg, Msg], Visitor[Msg, Msg], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Msg
  2. MsgVisitor
  3. Visitor
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class InvalidData(data: Msg, msg: String) extends Exception with Product with Serializable

    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

  2. sealed trait Selector extends AnyRef

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. def map[Z](f: (Msg) ⇒ Z): Visitor[Msg, Z]
    Definition Classes
    Visitor
  12. def mapNulls[Z](f: (Msg) ⇒ Z): Visitor[Msg, Z]
    Definition Classes
    Visitor
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. def transform[T](j: Msg, f: Visitor[_, T]): T
  19. def visitArray(length: Int, index: Int): ArrVisitor[Msg, Msg] { ... /* 2 definitions in type refinement */ }
    Definition Classes
    Msg → Visitor
  20. def visitBinary(bytes: Array[Byte], offset: Int, len: Int, index: Int): Binary
    Definition Classes
    Msg → Visitor
  21. def visitChar(s: Char, index: Int): Int32
    Definition Classes
    Msg → Visitor
  22. def visitExt(tag: Byte, bytes: Array[Byte], offset: Int, len: Int, index: Int): Ext
    Definition Classes
    Msg → Visitor
  23. def visitFalse(index: Int): False.type
    Definition Classes
    Msg → Visitor
  24. def visitFloat32(d: Float, index: Int): Float32
    Definition Classes
    Msg → Visitor
  25. def visitFloat64(d: Double, index: Int): Float64
    Definition Classes
    Msg → Visitor
  26. def visitFloat64String(s: String, index: Int): Msg
    Definition Classes
    MsgVisitor → Visitor
  27. def visitFloat64StringParts(s: CharSequence, decIndex: Int, expIndex: Int, index: Int): Msg
    Definition Classes
    MsgVisitor → Visitor
  28. def visitInt32(i: Int, index: Int): Int32
    Definition Classes
    Msg → Visitor
  29. def visitInt64(i: Long, index: Int): Int64
    Definition Classes
    Msg → Visitor
  30. def visitNull(index: Int): Null.type
    Definition Classes
    Msg → Visitor
  31. def visitObject(length: Int, index: Int): ObjVisitor[Msg, Msg] { ... /* 3 definitions in type refinement */ }
    Definition Classes
    Msg → Visitor
  32. def visitString(s: CharSequence, index: Int): Str
    Definition Classes
    Msg → Visitor
  33. def visitTrue(index: Int): True.type
    Definition Classes
    Msg → Visitor
  34. def visitUInt64(i: Long, index: Int): UInt64
    Definition Classes
    Msg → Visitor
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. object Selector

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from MsgVisitor[Msg, Msg]

Inherited from Visitor[Msg, Msg]

Inherited from AnyRef

Inherited from Any

Ungrouped