Package javax.json
Interface JsonReader
-
- All Superinterfaces:
java.lang.AutoCloseable
,java.io.Closeable
public interface JsonReader extends java.io.Closeable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
close()
JsonStructure
read()
JsonArray
readArray()
JsonObject
readObject()
default JsonValue
readValue()
-
-
-
Method Detail
-
read
JsonStructure read()
-
readObject
JsonObject readObject()
-
readArray
JsonArray readArray()
-
close
void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
-
readValue
default JsonValue readValue()
-
-