Uses of Class
com.fasterxml.jackson.dataformat.smile.SmileFactory
-
Packages that use SmileFactory Package Description com.fasterxml.jackson.dataformat.smile Package that contains implementation of Jackson Streaming API that works with Smile data format (see Smile format specification), and can be used with standard Jackson data binding functionality to deal with Smile encoded data. -
-
Uses of SmileFactory in com.fasterxml.jackson.dataformat.smile
Fields in com.fasterxml.jackson.dataformat.smile declared as SmileFactory Modifier and Type Field Description SmileFactory
Tool. smileFactory
Methods in com.fasterxml.jackson.dataformat.smile that return SmileFactory Modifier and Type Method Description SmileFactory
SmileFactory. configure(SmileGenerator.Feature f, boolean state)
Method for enabling or disabling specified generator feature (checkSmileGenerator.Feature
for list of features)SmileFactory
SmileFactory. configure(SmileParser.Feature f, boolean state)
Method for enabling or disabling specified parser feature (checkSmileParser.Feature
for list of features)SmileFactory
SmileFactory. copy()
SmileFactory
SmileFactory. disable(SmileGenerator.Feature f)
Method for disabling specified generator feature (checkSmileGenerator.Feature
for list of features)SmileFactory
SmileFactory. disable(SmileParser.Feature f)
Method for disabling specified parser features (checkSmileParser.Feature
for list of features)SmileFactory
SmileFactory. enable(SmileGenerator.Feature f)
Method for enabling specified generator features (checkSmileGenerator.Feature
for list of features)SmileFactory
SmileFactory. enable(SmileParser.Feature f)
Method for enabling specified parser feature (checkSmileParser.Feature
for list of features)Constructors in com.fasterxml.jackson.dataformat.smile with parameters of type SmileFactory Constructor Description SmileFactory(SmileFactory src, com.fasterxml.jackson.core.ObjectCodec oc)
Note: REQUIRES 2.2.1 -- unfortunate intra-patch dep but seems preferable to just leaving bug be as is
-