object Msg extends MsgVisitor[Msg, Msg]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Msg
- MsgVisitor
- Visitor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
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
- sealed trait Selector 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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
map[Z](f: (Msg) ⇒ Z): Visitor[Msg, Z]
- Definition Classes
- Visitor
-
def
mapNulls[Z](f: (Msg) ⇒ Z): Visitor[Msg, Z]
- Definition Classes
- Visitor
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def transform[T](j: Msg, f: Visitor[_, T]): T
-
def
visitArray(length: Int, index: Int): ArrVisitor[Msg, Msg] { ... /* 2 definitions in type refinement */ }
- Definition Classes
- Msg → Visitor
-
def
visitBinary(bytes: Array[Byte], offset: Int, len: Int, index: Int): Binary
- Definition Classes
- Msg → Visitor
-
def
visitChar(s: Char, index: Int): Int32
- Definition Classes
- Msg → Visitor
-
def
visitExt(tag: Byte, bytes: Array[Byte], offset: Int, len: Int, index: Int): Ext
- Definition Classes
- Msg → Visitor
-
def
visitFalse(index: Int): False.type
- Definition Classes
- Msg → Visitor
-
def
visitFloat32(d: Float, index: Int): Float32
- Definition Classes
- Msg → Visitor
-
def
visitFloat64(d: Double, index: Int): Float64
- Definition Classes
- Msg → Visitor
-
def
visitFloat64String(s: String, index: Int): Msg
- Definition Classes
- MsgVisitor → Visitor
-
def
visitFloat64StringParts(s: CharSequence, decIndex: Int, expIndex: Int, index: Int): Msg
- Definition Classes
- MsgVisitor → Visitor
-
def
visitInt32(i: Int, index: Int): Int32
- Definition Classes
- Msg → Visitor
-
def
visitInt64(i: Long, index: Int): Int64
- Definition Classes
- Msg → Visitor
-
def
visitNull(index: Int): Null.type
- Definition Classes
- Msg → Visitor
-
def
visitObject(length: Int, index: Int): ObjVisitor[Msg, Msg] { ... /* 3 definitions in type refinement */ }
- Definition Classes
- Msg → Visitor
-
def
visitString(s: CharSequence, index: Int): Str
- Definition Classes
- Msg → Visitor
-
def
visitTrue(index: Int): True.type
- Definition Classes
- Msg → Visitor
-
def
visitUInt64(i: Long, index: Int): UInt64
- Definition Classes
- Msg → Visitor
-
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( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- object Selector