| Package | Description | 
|---|---|
| com.fasterxml.jackson.core | Main public API classes of the core streaming JSON
 processor: most importantly  JsonFactoryused for constructing
 JSON parser (JsonParser)
 and generator
 (JsonGenerator)
 instances. | 
| com.fasterxml.jackson.core.util | Utility classes used by Jackson Core functionality. | 
| Modifier and Type | Method and Description | 
|---|---|
| FormatSchema | JsonParser. getSchema()Method for accessing Schema that this parser uses, if any. | 
| FormatSchema | JsonGenerator. getSchema()Method for accessing Schema that this generator uses, if any;  nullif none. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract boolean | TokenStreamFactory. canUseSchema(FormatSchema schema)Method that can be used to quickly check whether given schema
 is something that parsers and/or generators constructed by this
 factory could use. | 
| boolean | JsonParser. canUseSchema(FormatSchema schema)Method that can be used to verify that given schema can be used with
 this parser (using  JsonParser.setSchema(com.fasterxml.jackson.core.FormatSchema)). | 
| boolean | JsonGenerator. canUseSchema(FormatSchema schema)Method that can be used to verify that given schema can be used with
 this generator (using  JsonGenerator.setSchema(com.fasterxml.jackson.core.FormatSchema)). | 
| boolean | JsonFactory. canUseSchema(FormatSchema schema)Method that can be used to quickly check whether given schema
 is something that parsers and/or generators constructed by this
 factory could use. | 
| void | JsonParser. setSchema(FormatSchema schema)Method to call to make this parser use specified schema. | 
| void | JsonGenerator. setSchema(FormatSchema schema)Method to call to make this generator use specified schema. | 
| Modifier and Type | Method and Description | 
|---|---|
| FormatSchema | JsonParserDelegate. getSchema() | 
| FormatSchema | JsonGeneratorDelegate. getSchema() | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | JsonParserDelegate. canUseSchema(FormatSchema schema) | 
| boolean | JsonGeneratorDelegate. canUseSchema(FormatSchema schema) | 
| void | JsonParserDelegate. setSchema(FormatSchema schema) | 
| void | JsonGeneratorDelegate. setSchema(FormatSchema schema) | 
Copyright © 2008–2022 FasterXML. All rights reserved.