public interface JsonParserEvents
| Modifier and Type | Method and Description |
|---|---|
boolean |
arrayEnd(int index,
List<Object> list) |
boolean |
arrayItem(int index,
List<Object> list,
Object item) |
boolean |
arrayStart(int index) |
boolean |
bool(int endIndex,
boolean value) |
boolean |
nullValue(int endIndex) |
boolean |
number(int startIndex,
int endIndex,
Number number) |
boolean |
objectEnd(int index,
Map<String,Object> object) |
boolean |
objectField(int index,
Map<String,Object> map,
CharSequence name,
Object field) |
boolean |
objectFieldName(int index,
Map<String,Object> map,
CharSequence name) |
boolean |
objectStart(int index) |
boolean |
string(int startIndex,
int endIndex,
CharSequence string) |
boolean objectStart(int index)
boolean objectFieldName(int index,
Map<String,Object> map,
CharSequence name)
boolean objectField(int index,
Map<String,Object> map,
CharSequence name,
Object field)
boolean arrayStart(int index)
boolean number(int startIndex,
int endIndex,
Number number)
boolean string(int startIndex,
int endIndex,
CharSequence string)
boolean bool(int endIndex,
boolean value)
boolean nullValue(int endIndex)
Copyright © 2016. All Rights Reserved.