Object/Trait

upack

Msg

Related Docs: trait Msg | package upack

Permalink

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

    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

  2. sealed trait Selector 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. object Selector

    Permalink
  5. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. def map[Z](f: (Msg) ⇒ Z): Visitor[Msg, Z]

    Permalink
    Definition Classes
    Visitor
  13. def mapNulls[Z](f: (Msg) ⇒ Z): Visitor[Msg, Z]

    Permalink
    Definition Classes
    Visitor
  14. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  17. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

    Permalink
  20. def visitArray(length: Int, index: Int): ArrVisitor[Msg, Msg] { ... /* 2 definitions in type refinement */ }

    Permalink
    Definition Classes
    Msg → Visitor
  21. def visitBinary(bytes: Array[Byte], offset: Int, len: Int, index: Int): Binary

    Permalink
    Definition Classes
    Msg → Visitor
  22. def visitChar(s: Char, index: Int): Int32

    Permalink
    Definition Classes
    Msg → Visitor
  23. def visitExt(tag: Byte, bytes: Array[Byte], offset: Int, len: Int, index: Int): Ext

    Permalink
    Definition Classes
    Msg → Visitor
  24. def visitFalse(index: Int): False.type

    Permalink
    Definition Classes
    Msg → Visitor
  25. def visitFloat32(d: Float, index: Int): Float32

    Permalink
    Definition Classes
    Msg → Visitor
  26. def visitFloat64(d: Double, index: Int): Float64

    Permalink
    Definition Classes
    Msg → Visitor
  27. def visitFloat64String(s: String, index: Int): Msg

    Permalink
    Definition Classes
    MsgVisitor → Visitor
  28. def visitFloat64StringParts(s: CharSequence, decIndex: Int, expIndex: Int, index: Int): Msg

    Permalink
    Definition Classes
    MsgVisitor → Visitor
  29. def visitInt32(i: Int, index: Int): Int32

    Permalink
    Definition Classes
    Msg → Visitor
  30. def visitInt64(i: Long, index: Int): Int64

    Permalink
    Definition Classes
    Msg → Visitor
  31. def visitNull(index: Int): Null.type

    Permalink
    Definition Classes
    Msg → Visitor
  32. def visitObject(length: Int, index: Int): ObjVisitor[Msg, Msg] { ... /* 3 definitions in type refinement */ }

    Permalink
    Definition Classes
    Msg → Visitor
  33. def visitString(s: CharSequence, index: Int): Str

    Permalink
    Definition Classes
    Msg → Visitor
  34. def visitTrue(index: Int): True.type

    Permalink
    Definition Classes
    Msg → Visitor
  35. def visitUInt64(i: Long, index: Int): UInt64

    Permalink
    Definition Classes
    Msg → Visitor
  36. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(): Unit

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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    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