Uses of Interface
com.fasterxml.jackson.core.FormatSchema
-
Packages that use FormatSchema Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. -
-
Uses of FormatSchema in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return FormatSchema Modifier and Type Method Description FormatSchemaJsonGenerator. getSchema()Method for accessing Schema that this parser uses, if any.FormatSchemaJsonParser. getSchema()Method for accessing Schema that this parser uses, if any.Methods in com.fasterxml.jackson.core with parameters of type FormatSchema Modifier and Type Method Description booleanJsonFactory. 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(com.fasterxml.jackson.core.FormatSchema)).booleanJsonParser. canUseSchema(FormatSchema schema)Method that can be used to verify that given schema can be used with this parser (usingJsonParser.setSchema(com.fasterxml.jackson.core.FormatSchema)).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 FormatSchema Modifier and Type Method Description FormatSchemaJsonGeneratorDelegate. getSchema()FormatSchemaJsonParserDelegate. getSchema()Methods in com.fasterxml.jackson.core.util with parameters of type FormatSchema Modifier and Type Method Description booleanJsonGeneratorDelegate. canUseSchema(FormatSchema schema)booleanJsonParserDelegate. canUseSchema(FormatSchema schema)voidJsonGeneratorDelegate. setSchema(FormatSchema schema)voidJsonParserDelegate. setSchema(FormatSchema schema)
-