private com.fasterxml.jackson.databind.JsonNode |
JsonSchema.deserialize(java.lang.String input,
InputFormat inputFormat) |
Deserialize string to JsonNode.
|
(package private) com.fasterxml.jackson.databind.ObjectMapper |
JsonSchemaFactory.getObjectMapper(InputFormat inputFormat) |
|
JsonSchema |
JsonSchemaFactory.getSchema(java.io.InputStream schemaStream,
InputFormat inputFormat,
SchemaValidatorsConfig config) |
Gets the schema.
|
JsonSchema |
JsonSchemaFactory.getSchema(java.lang.String schema,
InputFormat inputFormat) |
Gets the schema.
|
JsonSchema |
JsonSchemaFactory.getSchema(java.lang.String schema,
InputFormat inputFormat,
SchemaValidatorsConfig config) |
Gets the schema.
|
(package private) com.fasterxml.jackson.databind.JsonNode |
JsonSchemaFactory.readTree(java.io.InputStream content,
InputFormat inputFormat) |
|
(package private) com.fasterxml.jackson.databind.JsonNode |
JsonSchemaFactory.readTree(java.lang.String content,
InputFormat inputFormat) |
|
java.util.Set<ValidationMessage> |
JsonSchema.validate(java.lang.String input,
InputFormat inputFormat) |
Validate the given input string using the input format, starting at the root
of the data path.
|
java.util.Set<ValidationMessage> |
JsonSchema.validate(java.lang.String input,
InputFormat inputFormat,
ExecutionContextCustomizer executionCustomizer) |
Validate the given input string using the input format, starting at the root
of the data path.
|
<T> T |
JsonSchema.validate(java.lang.String input,
InputFormat inputFormat,
OutputFormat<T> format) |
Validates the given input string using the input format, starting at the root
of the data path.
|
<T> T |
JsonSchema.validate(java.lang.String input,
InputFormat inputFormat,
OutputFormat<T> format,
ExecutionContextCustomizer executionCustomizer) |
Validates the given input string using the input format, starting at the root
of the data path.
|
<T> T |
JsonSchema.validate(java.lang.String input,
InputFormat inputFormat,
OutputFormat<T> format,
java.util.function.Consumer<ExecutionContext> executionCustomizer) |
Validates the given input string using the input format, starting at the root
of the data path.
|
java.util.Set<ValidationMessage> |
JsonSchema.validate(java.lang.String input,
InputFormat inputFormat,
java.util.function.Consumer<ExecutionContext> executionCustomizer) |
Validate the given input string using the input format, starting at the root
of the data path.
|
ValidationResult |
JsonSchema.walk(ExecutionContext executionContext,
java.lang.String input,
InputFormat inputFormat,
boolean validate) |
Walk the input.
|
ValidationResult |
JsonSchema.walk(ExecutionContext executionContext,
java.lang.String input,
InputFormat inputFormat,
boolean validate,
ExecutionContextCustomizer executionCustomizer) |
Walk the input.
|
<T> T |
JsonSchema.walk(ExecutionContext executionContext,
java.lang.String input,
InputFormat inputFormat,
OutputFormat<T> outputFormat,
boolean validate) |
Walk the input.
|
<T> T |
JsonSchema.walk(ExecutionContext executionContext,
java.lang.String input,
InputFormat inputFormat,
OutputFormat<T> outputFormat,
boolean validate,
ExecutionContextCustomizer executionCustomizer) |
Walk the input.
|
ValidationResult |
JsonSchema.walk(java.lang.String input,
InputFormat inputFormat,
boolean validate) |
Walk the input.
|
ValidationResult |
JsonSchema.walk(java.lang.String input,
InputFormat inputFormat,
boolean validate,
ExecutionContextCustomizer executionCustomizer) |
Walk the input.
|
ValidationResult |
JsonSchema.walk(java.lang.String input,
InputFormat inputFormat,
boolean validate,
java.util.function.Consumer<ExecutionContext> executionCustomizer) |
Walk the input.
|