Uses of Interface
com.fasterxml.jackson.core.util.JacksonFeature
-
Packages that use JacksonFeature 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.json JSON-specific parser and generator implementation classes that Jackson defines and uses.com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. -
-
Uses of JacksonFeature in com.fasterxml.jackson.core
Subinterfaces of JacksonFeature in com.fasterxml.jackson.core Modifier and Type Interface Description interfaceFormatFeatureMarker interface that is to be implemented by data format - specific features.Classes in com.fasterxml.jackson.core that implement JacksonFeature Modifier and Type Class Description static classJsonFactory.FeatureEnumeration that defines all on/off features that can only be changed forJsonFactory.classStreamReadCapabilitySet of on/off capabilities that aJsonParserfor given format (or in case of buffering, original format) has.classStreamReadFeatureToken reader (parser) features not-specific to any particular format backend.classStreamWriteCapabilitySet of on/off capabilities that aJsonGeneratorfor given format (or in case of buffering, original format) has.classStreamWriteFeatureToken writer (generator) features not-specific to any particular format backend. -
Uses of JacksonFeature in com.fasterxml.jackson.core.json
Classes in com.fasterxml.jackson.core.json that implement JacksonFeature Modifier and Type Class Description classJsonReadFeatureToken reader (parser) features specific to JSON backend.classJsonWriteFeatureToken writer features specific to JSON backend. -
Uses of JacksonFeature in com.fasterxml.jackson.core.util
Classes in com.fasterxml.jackson.core.util with type parameters of type JacksonFeature Modifier and Type Class Description classJacksonFeatureSet<F extends JacksonFeature>Container similar toEnumSetmeant for storing sets ofJacksonFeatures (usuallyEnums): main difference being that these sets are immutable.Methods in com.fasterxml.jackson.core.util with type parameters of type JacksonFeature Modifier and Type Method Description static <F extends JacksonFeature>
JacksonFeatureSet<F>JacksonFeatureSet. fromBitmask(int bitmask)static <F extends JacksonFeature>
JacksonFeatureSet<F>JacksonFeatureSet. fromDefaults(F[] allFeatures)"Default" factory which will calculate settings based on default-enabled status of all features.Methods in com.fasterxml.jackson.core.util with parameters of type JacksonFeature Modifier and Type Method Description static <F extends JacksonFeature>
JacksonFeatureSet<F>JacksonFeatureSet. fromDefaults(F[] allFeatures)"Default" factory which will calculate settings based on default-enabled status of all features.
-