Package com.esri.core.geometry
Interface JsonReader
-
- All Known Implementing Classes:
JsonParserReader
public interface JsonReaderAn abstract reader for Json. See JsonParserReader for a concrete implementation around JsonParser.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classJsonReader.Token
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancurrentBooleanValue()doublecurrentDoubleValue()intcurrentIntValue()java.lang.StringcurrentString()JsonReader.TokencurrentToken()JsonReader.TokennextToken()voidskipChildren()
-
-
-
Method Detail
-
nextToken
JsonReader.Token nextToken() throws JsonGeometryException
- Throws:
JsonGeometryException
-
currentToken
JsonReader.Token currentToken() throws JsonGeometryException
- Throws:
JsonGeometryException
-
skipChildren
void skipChildren() throws JsonGeometryException- Throws:
JsonGeometryException
-
currentString
java.lang.String currentString() throws JsonGeometryException- Throws:
JsonGeometryException
-
currentDoubleValue
double currentDoubleValue() throws JsonGeometryException- Throws:
JsonGeometryException
-
currentIntValue
int currentIntValue() throws JsonGeometryException- Throws:
JsonGeometryException
-
currentBooleanValue
boolean currentBooleanValue() throws JsonGeometryException- Throws:
JsonGeometryException
-
-