public interface JsonContentHandler
| Modifier and Type | Method and Description |
|---|---|
String |
contextInfo()
Help information for parser.
|
void |
endArray()
End of the json array event.
|
void |
endDocument()
End of the json document event.
|
void |
endObject()
End of the json object event.
|
void |
literal(JsonLiteralImpl literal)
Json literal event.
|
void |
nameSeparator()
Name separaton json event.
|
void |
startArray()
Start of the json array event.
|
void |
startDocument()
Start of the json document event.
|
void |
startObject()
Start of the json object event.
|
void |
valueSeparator()
Value separator json event.
|
void |
whiteSpace(String content,
int offset,
int length)
white space json event
|
String contextInfo()
void startDocument()
void endDocument()
void startArray()
void endArray()
void startObject()
void endObject()
void valueSeparator()
void nameSeparator()
void literal(JsonLiteralImpl literal)
literal - provided literalvoid whiteSpace(String content, int offset, int length)
content - String where whitespace is locatedoffset - start position of white space in contentlength - length of white space.Copyright © 2018. All rights reserved.