See: Description
Interface | Description |
---|---|
JsArraySpec |
Represents a specification of a JSON array
|
JsSpec |
The `JsSpec` interface represents a specification for validating JSON data structures.
|
Class | Description |
---|---|
JsArraySpecParser |
The
JsArraySpecParser class is responsible for creating JSON array parsers based on provided JSON specifications (specs). |
JsError |
Represents an error validating a value of a JSON
|
JsIO |
Singleton instance to create JSON readers and writers to parse bytes into JSON and serialize JSON into bytes.
|
JsObjSpec |
Represents a specification of a JSON object, allowing you to define rules and constraints for validating JSON objects.
|
JsObjSpecParser |
The
JsObjSpecParser class is responsible for creating JSON object parsers based on provided JSON specifications (specs). |
JsReader |
Object for processing JSON from byte[] and InputStream.
|
JsSpecs |
The `JsSpecs` class provides a collection of static factory methods for creating JSON specifications (JsSpec).
|
SpecError |
The `SpecError` class represents an error that occurs during the validation of a JSON value against a
specification.
|
Enum | Description |
---|---|
ERROR_CODE |
The `ERROR_CODE` enum represents various error codes that can be associated with
validation errors when using JSON value specifications (`JsSpecs`).
|
JSON Specifications (Specs):
The core concept in this package is the JSON specification, represented by various interfaces such as JsSpec
, JsArraySpec
, and JsObjSpec
. These specifications define the schema and validation rules for JSON data, ensuring that it adheres to the expected structure.
- JsSpec
: An interface that represents a generic JSON specification. Implementations of this interface can be used to specify constraints on JSON data types.
- JsArraySpec
: An interface that extends `JsSpec` and is used to define specifications for JSON arrays. It allows you to specify constraints on the elements within a JSON array.
- JsObjSpec
: An interface that extends `JsSpec` and is used to define specifications for JSON objects (maps). It allows you to specify constraints on the keys and values within a JSON object.
JSON Parsers:
JSON parsers, represented by classes like JsSpecParser
, are used to validate and parse JSON data based on the provided JSON specifications. Parsers ensure that the input JSON data conforms to the specified schema.
- JsSpecParser
: A class used to create JSON data parsers from JSON specifications. These parsers validate input JSON data against the specified schema and return the parsed JSON data if it conforms.
- JsArraySpecParser
: A class for creating JSON array parsers from array specifications. These parsers validate and parse JSON arrays against the defined schema.
- JsObjSpecParser
: A class for creating JSON object parsers from object specifications. These parsers validate and parse JSON objects against the specified schema.
Usage:
To use the classes and interfaces in this package, you typically follow these steps:
1. Define a JSON specification using one of the `JsSpec` implementations like `JsArraySpec` or `JsObjSpec`. Specify the expected structure and constraints for JSON data.
2. Create a JSON parser using the corresponding parser class, such as `JsArraySpecParser` or `JsObjSpecParser`, passing in the JSON specification.
3. Use the parser to validate and parse JSON data. If the input data conforms to the specification, the parser returns the parsed JSON data; otherwise, it raises an exception indicating the validation failure.
JsSpec
,
JsArraySpec
,
JsObjSpec
,
JsSpecParser
,
JsArraySpecParser
,
JsObjSpecParser
Copyright © 2023. All rights reserved.