class Delegate[T, V] extends Visitor[T, V]
- Alphabetic
- By Inheritance
- Delegate
- 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
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: (V) ⇒ Z): Visitor[T, Z]
- Definition Classes
- Visitor
-
def
mapNulls[Z](f: (V) ⇒ Z): Visitor[T, 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 visitArray(length: Int, index: Int): ArrVisitor[T, V]
- def visitBinary(bytes: Array[Byte], offset: Int, len: Int, index: Int): V
- def visitChar(s: Char, index: Int): V
- def visitExt(tag: Byte, bytes: Array[Byte], offset: Int, len: Int, index: Int): V
- def visitFalse(index: Int): V
- def visitFloat32(d: Float, index: Int): V
-
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.
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- d
the input number
- index
json source position at the start of the number being visited
-
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
-
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.
- 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
e
orE
relative to the start of the CharSequence, or -1 if omitted- index
json source position at the start of the number being visited
- def visitInt32(i: Int, index: Int): V
- def visitInt64(i: Long, index: Int): V
- def visitNull(index: Int): V
-
def
visitObject(length: Int, index: Int): ObjVisitor[T, V]
- index
json source position at the start of the
{
being visited- returns
a ObjVisitor used for visiting the keys/values of the object
- def visitString(s: CharSequence, index: Int): V
- def visitTrue(index: Int): V
- def visitUInt64(i: Long, index: Int): V
-
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( ... )