A Visitor
that constructs a Value
.
This would usually be used in conjunction with
a StringParser
.
no subtypes hierarchy
Initializer |
Builder() |
Attributes | |
result | Source Codeshared Value result The constructed Throws
|
Inherited Attributes |
Attributes inherited from: Object |
Methods | |
onBoolean | Source Codeshared actual void onBoolean(Boolean bool) Called when encountering true or false. Refines Visitor.onBoolean |
onEndArray | Source Codeshared actual void onEndArray() Called at the end of an array. Refines Visitor.onEndArray |
onEndObject | Source Codeshared actual void onEndObject() Called at the end of an object. Refines Visitor.onEndObject |
onKey | Source Codeshared actual void onKey(String key) Called when encountering a key within a the current object. Refines Visitor.onKey |
onNull | Source Codeshared actual void onNull() Called when encountering a null. Refines Visitor.onNull |
onNumber | Source Codeshared actual void onNumber(Integer|Float num) Called when encountering a number. Refines Visitor.onNumber |
onStartArray | Source Codeshared actual void onStartArray() Called at the start of a new array.
Further calls pertain to this new object until
a corresponding call to Refines Visitor.onStartArray |
onStartObject | Source Codeshared actual void onStartObject() Called at the start of a new object.
Further calls pertain to this new object until
a corresponding call to Refines Visitor.onStartObject |
onString | Source Codeshared actual void onString(String string) Called when encountering a string. Refines Visitor.onString |
Inherited Methods |
Methods inherited from: Object |
Methods inherited from: Visitor |