Uses of Interface
com.networknt.schema.OutputFormat
Packages that use OutputFormat
-
Uses of OutputFormat in com.networknt.schema
Classes in com.networknt.schema that implement OutputFormatModifier and TypeClassDescriptionstatic class
The Boolean output format.static class
The Default output format.static class
The Flag output format.static class
The Hierarchical output format.static class
The List output format.static class
The Result output format.Methods in com.networknt.schema with parameters of type OutputFormatModifier and TypeMethodDescription<T> T
JsonSchema.validate
(com.fasterxml.jackson.databind.JsonNode rootNode, OutputFormat<T> format) Validates the given root JsonNode, starting at the root of the data path.<T> T
JsonSchema.validate
(com.fasterxml.jackson.databind.JsonNode rootNode, OutputFormat<T> format, ExecutionContextCustomizer executionCustomizer) Validates the given root JsonNode, starting at the root of the data path.<T> T
JsonSchema.validate
(com.fasterxml.jackson.databind.JsonNode rootNode, OutputFormat<T> format, Consumer<ExecutionContext> executionCustomizer) Validates the given root JsonNode, starting at the root of the data path.<T> T
JsonSchema.validate
(ExecutionContext executionContext, com.fasterxml.jackson.databind.JsonNode node, OutputFormat<T> format) Validates to a format.<T> T
JsonSchema.validate
(ExecutionContext executionContext, com.fasterxml.jackson.databind.JsonNode node, OutputFormat<T> format, ExecutionContextCustomizer executionCustomizer) Validates to a format.<T> T
JsonSchema.validate
(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
(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
(String input, InputFormat inputFormat, OutputFormat<T> format, Consumer<ExecutionContext> executionCustomizer) Validates the given input string using the input format, starting at the root of the data path.<T> T
JsonSchema.walk
(com.fasterxml.jackson.databind.JsonNode node, OutputFormat<T> outputFormat, boolean validate) Walk the JSON node.<T> T
JsonSchema.walk
(ExecutionContext executionContext, com.fasterxml.jackson.databind.JsonNode node, OutputFormat<T> outputFormat, boolean validate, ExecutionContextCustomizer executionCustomizer) Walk the JSON node.<T> T
JsonSchema.walk
(ExecutionContext executionContext, com.fasterxml.jackson.databind.JsonNode node, OutputFormat<T> outputFormat, boolean validate, Consumer<ExecutionContext> executionCustomizer) Walk the JSON node.<T> T
JsonSchema.walk
(ExecutionContext executionContext, String input, InputFormat inputFormat, OutputFormat<T> outputFormat, boolean validate) Walk the input.<T> T
JsonSchema.walk
(ExecutionContext executionContext, String input, InputFormat inputFormat, OutputFormat<T> outputFormat, boolean validate, ExecutionContextCustomizer executionCustomizer) Walk the input.