SeqLikeReader

upickle.implicits.Readers.SeqLikeReader
class SeqLikeReader[C[_], T](implicit r: Reader[T], factory: Factory[T, C[T]]) extends SimpleReader[C[T]]

Attributes

Graph
Supertypes
trait SimpleReader[C[T]]
trait SimpleVisitor[Any, C[T]]
trait Reader[C[T]]
trait Visitor[Any, C[T]]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def expectedMsg: String

Attributes

Definition Classes
SimpleVisitor
override def visitArray(length: Int, index: Int): ArrVisitor[Any, C[T]]

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

Definition Classes
SimpleVisitor -> Visitor

Inherited methods

override def map[Z](f: C[T] => Z): Reader[Z]

Attributes

Definition Classes
Reader -> Visitor
Inherited from:
Reader
override def mapNulls[Z](f: C[T] => Z): Reader[Z]

Attributes

Definition Classes
Reader -> Visitor
Inherited from:
Reader
def narrow[K <: C[T]]: Reader[K]

Attributes

Inherited from:
Reader
def visitBinary(bytes: Array[Byte], offset: Int, len: Int, index: Int): V

Attributes

Inherited from:
SimpleVisitor
def visitChar(s: Char, index: Int): V

Attributes

Inherited from:
SimpleVisitor
def visitExt(tag: Byte, bytes: Array[Byte], offset: Int, len: Int, index: Int): V

Attributes

Inherited from:
SimpleVisitor
def visitFalse(index: Int): V

Value parameters

index

json source position at the start of the false being visited

Attributes

Inherited from:
SimpleVisitor
def visitFloat32(d: Float, index: Int): V

Attributes

Inherited from:
SimpleVisitor
def visitFloat64(d: Double, index: Int): V

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

Inherited from:
SimpleVisitor
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): V

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:
SimpleVisitor
def visitFloat64StringParts(s: CharSequence, decIndex: Int, expIndex: Int, index: Int): V

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:
SimpleVisitor
def visitInt32(i: Int, index: Int): V

Attributes

Inherited from:
SimpleVisitor
def visitInt64(i: Long, index: Int): V

Attributes

Inherited from:
SimpleVisitor
def visitNull(index: Int): V

Value parameters

index

json source position at the start of the null being visited

Attributes

Inherited from:
SimpleVisitor
def visitObject(length: Int, jsonableKeys: Boolean, index: Int): ObjVisitor[T, V]

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

Inherited from:
SimpleVisitor
def visitString(s: CharSequence, index: Int): V

Value parameters

index

json source position at the start of the string being visited

s

the text string being visited

Attributes

Inherited from:
SimpleVisitor
def visitTrue(index: Int): V

Value parameters

index

json source position at the start of the true being visited

Attributes

Inherited from:
SimpleVisitor
def visitUInt64(i: Long, index: Int): V

Attributes

Inherited from:
SimpleVisitor