Package com.esri.core.geometry
Interface JsonReader
-
- All Known Implementing Classes:
JsonParserReader
public interface JsonReader
An abstract reader for Json. See JsonParserReader for a concrete implementation around JsonParser.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
JsonReader.Token
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
currentBooleanValue()
double
currentDoubleValue()
int
currentIntValue()
java.lang.String
currentString()
JsonReader.Token
currentToken()
JsonReader.Token
nextToken()
void
skipChildren()
-
-
-
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
-
-