mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
19 lines
457 B
Java
Generated
19 lines
457 B
Java
Generated
// Generated automatically from jakarta.json.JsonReader for testing purposes
|
|
|
|
package jakarta.json;
|
|
|
|
import jakarta.json.JsonArray;
|
|
import jakarta.json.JsonObject;
|
|
import jakarta.json.JsonStructure;
|
|
import jakarta.json.JsonValue;
|
|
import java.io.Closeable;
|
|
|
|
public interface JsonReader extends Closeable
|
|
{
|
|
JsonArray readArray();
|
|
JsonObject readObject();
|
|
JsonStructure read();
|
|
default JsonValue readValue(){ return null; }
|
|
void close();
|
|
}
|