public interface IJsonHandler
| Modifier and Type | Method and Description |
|---|---|
void |
handleComment(String c)
Handle Json comment (illegal but found in partice)
|
void |
handleEnd()
Called once at the end of a document.
|
void |
handleKey(String key,
JsonValueTypes valueType,
JsonKeyTypes keyType)
Handle json key, used in resname
|
void |
handleListEnd() |
void |
handleListStart()
Handle json List: i.e., [ "value1", "value2" ]
For contextual information.
|
void |
handleObjectEnd() |
void |
handleObjectStart()
Handle json Object: i.e., { "key" : "value" }
For contextual information.
|
void |
handleSeparator(String separator)
Handle separator, i.e., ":" or ","
|
void |
handleStart()
Called once at the beginning of a new document.
|
void |
handleValue(String value,
JsonValueTypes valueType)
Handle json value, may be double, single quoted string,
number, boolean symbol or null
|
void |
handleWhitespace(String whitespace)
Handle json whitespace
|
void handleStart()
void handleEnd()
void handleComment(String c)
void handleKey(String key, JsonValueTypes valueType, JsonKeyTypes keyType)
void handleSeparator(String separator)
void handleValue(String value, JsonValueTypes valueType)
void handleWhitespace(String whitespace)
void handleObjectStart()
void handleObjectEnd()
void handleListStart()
void handleListEnd()
Copyright © 2022. All rights reserved.