Uses of Interface
com.fasterxml.jackson.databind.cfg.ConfigFeature

Packages that use ConfigFeature
com.fasterxml.jackson.databind Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is via ObjectMapper class, as well as convenience methods included in JsonParser 
com.fasterxml.jackson.databind.cfg Package that contains most of configuration-related classes; exception being couple of most-commonly used configuration things (like Feature enumerations) that are at the main level (com.fasterxml.jackson.databind). 
 

Uses of ConfigFeature in com.fasterxml.jackson.databind
 

Classes in com.fasterxml.jackson.databind that implement ConfigFeature
 class DeserializationFeature
          Enumeration that defines simple on/off features that affect the way Java objects are deserialized from JSON
 class MapperFeature
          Enumeration that defines simple on/off features to set for ObjectMapper, and accessible (but not changeable) via ObjectReader and ObjectWriter (as well as through various convenience methods through context objects).
 class SerializationFeature
          Enumeration that defines simple on/off features that affect the way Java objects are serialized.
 

Uses of ConfigFeature in com.fasterxml.jackson.databind.cfg
 

Classes in com.fasterxml.jackson.databind.cfg with type parameters of type ConfigFeature
 class MapperConfigBase<CFG extends ConfigFeature,T extends MapperConfigBase<CFG,T>>
           
 

Methods in com.fasterxml.jackson.databind.cfg with type parameters of type ConfigFeature
static
<F extends Enum<F> & ConfigFeature>
int
MapperConfig.collectFeatureDefaults(Class<F> enumClass)
          Method that calculates bit set (flags) of all features that are enabled by default.
 



Copyright © 2012 fasterxml.com. All Rights Reserved.