Uses of Interface
com.fasterxml.jackson.core.FormatSchema
Packages that use FormatSchema
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser)
and generator
(JsonGenerator)
instances.Utility classes used by Jackson Core functionality.
-
Uses of FormatSchema in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return FormatSchemaModifier and TypeMethodDescriptionJsonGenerator.getSchema()Method for accessing Schema that this generator uses, if any;nullif none.JsonParser.getSchema()Method for accessing Schema that this parser uses, if any.Methods in com.fasterxml.jackson.core with parameters of type FormatSchemaModifier and TypeMethodDescriptionbooleanJsonFactory.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.booleanJsonGenerator.canUseSchema(FormatSchema schema) Method that can be used to verify that given schema can be used with this generator (usingJsonGenerator.setSchema(FormatSchema)).booleanJsonParser.canUseSchema(FormatSchema schema) Method that can be used to verify that given schema can be used with this parser (usingJsonParser.setSchema(FormatSchema)).abstract booleanTokenStreamFactory.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.voidJsonGenerator.setSchema(FormatSchema schema) Method to call to make this generator use specified schema.voidJsonParser.setSchema(FormatSchema schema) Method to call to make this parser use specified schema. -
Uses of FormatSchema in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return FormatSchemaModifier and TypeMethodDescriptionJsonGeneratorDelegate.getSchema()JsonParserDelegate.getSchema()Methods in com.fasterxml.jackson.core.util with parameters of type FormatSchemaModifier and TypeMethodDescriptionbooleanJsonGeneratorDelegate.canUseSchema(FormatSchema schema) booleanJsonParserDelegate.canUseSchema(FormatSchema schema) voidJsonGeneratorDelegate.setSchema(FormatSchema schema) voidJsonParserDelegate.setSchema(FormatSchema schema)