ValueVisitor

confuse.formats.JsonReader$.ValueVisitor
class ValueVisitor(name: String, ls: LocationStream) extends JsVisitor[Value, Value]

Attributes

Graph
Supertypes
trait JsVisitor[Value, Value]
trait Visitor[Value, Value]
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Type members

Classlikes

class ArrVisitor(idx: Int) extends ArrVisitor[Value, Arr]

Attributes

Graph
Supertypes
trait ArrVisitor[Value, Arr]
trait ObjArrVisitor[Value, Arr]
class Object
trait Matchable
class Any
class ConfigVisitor(idx: Int) extends ObjVisitor[Value, Config]

Attributes

Graph
Supertypes
trait ObjVisitor[Value, Config]
trait ObjArrVisitor[Value, Config]
class Object
trait Matchable
class Any
object KeyVisitor extends SimpleVisitor[Value, String]

Attributes

Graph
Supertypes
trait SimpleVisitor[Value, String]
trait Visitor[Value, String]
class Object
trait Matchable
class Any
Self type

Value members

Concrete methods

override def visitArray(length: Int, index: Int): ArrVisitor[Value, Value]

Attributes

index

json source position at the start of the [ being visited

Returns:

a Visitor used for visiting the elements of the array

Definition Classes
Visitor
override def visitFalse(index: Int): Value

Attributes

index

json source position at the start of the false being visited

Definition Classes
Visitor
override def visitFloat64StringParts(s: CharSequence, decIndex: Int, expIndex: Int, index: Int): Value

Visit the number in its text representation.

Visit the number in its text representation.

Attributes

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.

Definition Classes
Visitor
override def visitJsonableObject(length: Int, index: Int): ObjVisitor[Value, Value]

Attributes

Definition Classes
JsVisitor
override def visitNull(index: Int): Value

Attributes

index

json source position at the start of the null being visited

Definition Classes
Visitor
override def visitString(s: CharSequence, index: Int): Value

Attributes

index

json source position at the start of the string being visited

s

the text string being visited

Definition Classes
Visitor
override def visitTrue(index: Int): Value

Attributes

index

json source position at the start of the true being visited

Definition Classes
Visitor

Inherited methods

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

Attributes

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

Attributes

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

Attributes

Inherited from:
JsVisitor
def visitChar(s: Char, index: Int): J

Attributes

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

Attributes

Inherited from:
JsVisitor
def visitFloat32(d: Float, index: Int): J

Attributes

Inherited from:
JsVisitor
def visitFloat64(d: Double, index: Int): J

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

Attributes

d

the input number

index

json source position at the start of the number being visited

Inherited from:
JsVisitor
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

Attributes

index

json source position at the start of the string being visited

s

the text string being visited

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

Attributes

Inherited from:
JsVisitor
def visitInt32(i: Int, index: Int): J

Attributes

Inherited from:
JsVisitor
def visitInt64(i: Long, index: Int): J

Attributes

Inherited from:
JsVisitor
override def visitObject(length: Int, jsonableKeys: Boolean, index: Int): ObjVisitor[T, J]

Attributes

index

json source position at the start of the { being visited

Returns:

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

Definition Classes
JsVisitor -> Visitor
Inherited from:
JsVisitor
def visitUInt64(i: Long, index: Int): J

Attributes

Inherited from:
JsVisitor