Msg

upack.Msg
See theMsg companion trait
object Msg extends MsgVisitor[Msg, Msg]

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
trait MsgVisitor[Msg, Msg]
trait Visitor[Msg, Msg]
class Object
trait Matchable
class Any
Show all
Self type
Msg.type

Members list

Type members

Classlikes

case class InvalidData(data: Msg, msg: String) extends Exception

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

Value parameters

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

Attributes

Supertypes
trait Product
trait Equals
class Exception
class Throwable
trait Serializable
class Object
trait Matchable
class Any
Show all
object Selector

Attributes

Companion
trait
Supertypes
class Object
trait Matchable
class Any
Self type
Selector.type
sealed trait Selector

Attributes

Companion
object
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def transform[T](j: Msg, f: Visitor[_, T]): T
def visitArray(length: Int, index: Int): ArrVisitor[Msg, Msg]

Value parameters

index

json source position at the start of the [ being visited

Attributes

Returns

a Visitor used for visiting the elements of the array

def visitBinary(bytes: Array[Byte], offset: Int, len: Int, index: Int): Msg
def visitChar(s: Char, index: Int): Msg
def visitExt(tag: Byte, bytes: Array[Byte], offset: Int, len: Int, index: Int): Msg
def visitFalse(index: Int): Msg

Value parameters

index

json source position at the start of the false being visited

Attributes

def visitFloat32(d: Float, index: Int): Msg
def visitFloat64(d: Double, index: Int): Msg

Optional handler for raw double values; can be overriden for performance in cases where you're translating directly between numbers to avoid the overhead of stringifying and re-parsing your numbers (e.g. the WebJson transformer gets raw doubles from the underlying Json.parse).

Optional handler for raw double values; can be overriden for performance in cases where you're translating directly between numbers to avoid the overhead of stringifying and re-parsing your numbers (e.g. the WebJson transformer gets raw doubles from the underlying Json.parse).

Delegates to visitFloat64StringParts if not overriden

Value parameters

d

the input number

index

json source position at the start of the number being visited

Attributes

def visitInt32(i: Int, index: Int): Msg
def visitInt64(i: Long, index: Int): Msg
def visitNull(index: Int): Msg

Value parameters

index

json source position at the start of the null being visited

Attributes

def visitObject(length: Int, jsonableKeys: Boolean, index: Int): ObjVisitor[Msg, Msg]

Value parameters

index

json source position at the start of the { being visited

Attributes

Returns

a ObjVisitor used for visiting the keys/values of the object

def visitString(s: CharSequence, index: Int): Msg

Value parameters

index

json source position at the start of the string being visited

s

the text string being visited

Attributes

def visitTrue(index: Int): Msg

Value parameters

index

json source position at the start of the true being visited

Attributes

def visitUInt64(i: Long, index: Int): Msg

Inherited methods

def map[Z](f: Msg => Z): Visitor[T, Z]

Attributes

Inherited from:
Visitor
def mapNulls[Z](f: Msg => Z): Visitor[T, Z]

Attributes

Inherited from:
Visitor
def visitFloat64ByteParts(s: Array[Byte], arrOffset: Int, arrLength: Int, decIndex: Int, expIndex: Int, index: Int): J

Attributes

Inherited from:
Visitor
def visitFloat64CharParts(s: Array[Char], arrOffset: Int, arrLength: Int, decIndex: Int, expIndex: Int, index: Int): J

Attributes

Inherited from:
Visitor
def visitFloat64String(s: String, index: Int): J

Convenience methods to help you compute the decimal-point-index and exponent-index of an arbitrary numeric string

Convenience methods to help you compute the decimal-point-index and exponent-index of an arbitrary numeric string

Value parameters

index

json source position at the start of the string being visited

s

the text string being visited

Attributes

Inherited from:
MsgVisitor
def visitFloat64StringParts(s: CharSequence, decIndex: Int, expIndex: Int, index: Int): J

Visit the number in its text representation.

Visit the number in its text representation.

Value parameters

decIndex

index of the ., relative to the start of the CharSequence, or -1 if omitted

expIndex

index of e or E relative to the start of the CharSequence, or -1 if omitted

index

json source position at the start of the number being visited

s

unparsed text representation of the number.

Attributes

Inherited from:
MsgVisitor