JsonParser |
JsonValidationService.createParser(InputStream in,
Charset charset,
JsonSchema schema,
ProblemHandler handler) |
Creates a JSON parser from the specified byte stream, which validates the
JSON document while parsing.
|
JsonParser |
JsonValidationService.createParser(InputStream in,
JsonSchema schema,
ProblemHandler handler) |
Creates a JSON parser from the specified byte stream, which validates the
JSON document while parsing.
|
JsonParser |
JsonValidationService.createParser(Reader reader,
JsonSchema schema,
ProblemHandler handler) |
Creates a JSON parser from the specified character stream, which validates
the JSON document while parsing.
|
JsonParser |
JsonValidationService.createParser(Path path,
JsonSchema schema,
ProblemHandler handler) |
Creates a JSON parser from the specified path, which validates the JSON
document while parsing.
|
JsonReader |
JsonValidationService.createReader(InputStream in,
Charset charset,
JsonSchema schema,
ProblemHandler handler) |
Creates a JSON reader from a byte stream, which validates the JSON document
while reading.
|
JsonReader |
JsonValidationService.createReader(InputStream in,
JsonSchema schema,
ProblemHandler handler) |
Creates a JSON reader from a byte stream, which validates the JSON document
while reading.
|
JsonReader |
JsonValidationService.createReader(Reader reader,
JsonSchema schema,
ProblemHandler handler) |
Creates a JSON reader from a character stream, which validates the JSON
document while reading.
|
JsonReader |
JsonValidationService.createReader(Path path,
JsonSchema schema,
ProblemHandler handler) |
Creates a JSON reader from a path, which validates the JSON document while
reading.
|
ValidationConfig |
ValidationConfig.withProblemHandler(ProblemHandler handler) |
Specifies the handler of problems detected by the JSON validators.
|