class Leaf[T] extends TaggedReadWriter[T]
- Alphabetic
- By Inheritance
- Leaf
- TaggedReadWriter
- TaggedWriter
- TaggedReader
- SimpleReader
- SimpleVisitor
- ReadWriter
- Writer
- Reader
- Visitor
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
bimap[V](f: (V) ⇒ T, g: (T) ⇒ V): ReadWriter[V]
- Definition Classes
- ReadWriter
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
def
comap[U](f: (U) ⇒ T): MapWriter[U, T]
- Definition Classes
- Writer
-
def
comapNulls[U](f: (U) ⇒ T): MapWriterNulls[U, T]
- Definition Classes
- Writer
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
expectedMsg: String
- Definition Classes
- TaggedReader → SimpleVisitor
-
def
findReader(s: String): Reader[T]
- Definition Classes
- Leaf → TaggedReader
-
def
findWriter(v: Any): (String, CaseW[T])
- Definition Classes
- Leaf → TaggedWriter
-
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: (T) ⇒ Z): Reader[Z]
- def mapNulls[Z](f: (T) ⇒ Z): Reader[Z]
-
def
narrow[K]: ReadWriter[K]
- Definition Classes
- ReadWriter → Writer → Reader
-
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[V](v: T, out: Visitor[_, V]): V
- Definition Classes
- Writer
-
def
visitArray(length: Int, index: Int): ArrVisitor[Any, T]
- index
json source position at the start of the
[being visited- returns
a Visitor used for visiting the elements of the array
- Definition Classes
- TaggedReadWriter → TaggedReader → SimpleVisitor → Visitor
-
def
visitBinary(bytes: Array[Byte], offset: Int, len: Int, index: Int): T
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitChar(s: Char, index: Int): T
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitExt(tag: Byte, bytes: Array[Byte], offset: Int, len: Int, index: Int): T
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitFalse(index: Int): T
- index
json source position at the start of the
falsebeing visited
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitFloat32(d: Float, index: Int): T
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitFloat64(d: Double, index: Int): T
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.
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
visitFloat64StringPartsif not overriden- d
the input number
- index
json source position at the start of the number being visited
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitFloat64String(s: String, index: Int): T
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
- s
the text string being visited
- index
json source position at the start of the string being visited
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitFloat64StringParts(s: CharSequence, decIndex: Int, expIndex: Int, index: Int): T
Visit the number in its text representation.
Visit the number in its text representation.
- s
unparsed text representation of the number.
- decIndex
index of the
., relative to the start of the CharSequence, or -1 if omitted- expIndex
index of
eorErelative to the start of the CharSequence, or -1 if omitted- index
json source position at the start of the number being visited
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitInt32(i: Int, index: Int): T
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitInt64(i: Long, index: Int): T
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitNull(index: Int): T
- index
json source position at the start of the
nullbeing visited
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitObject(length: Int, index: Int): ObjVisitor[Any, T]
- 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
- TaggedReadWriter → TaggedReader → SimpleVisitor → Visitor
-
def
visitString(s: CharSequence, index: Int): T
- s
the text string being visited
- index
json source position at the start of the string being visited
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitTrue(index: Int): T
- index
json source position at the start of the
truebeing visited
- Definition Classes
- SimpleVisitor → Visitor
-
def
visitUInt64(i: Long, index: Int): T
- Definition Classes
- SimpleVisitor → 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( ... )
-
def
write[V](out: Visitor[_, V], v: T): V
- Definition Classes
- Writer
-
def
write0[R](out: Visitor[_, R], v: T): R
- Definition Classes
- TaggedWriter → Writer