Searched refs:mapperFeatures (Results 1 – 4 of 4) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/ |
D | MapperConfig.java | 71 protected MapperConfig(BaseSettings base, int mapperFeatures) in MapperConfig() argument 74 _mapperFeatures = mapperFeatures; in MapperConfig() 77 protected MapperConfig(MapperConfig<T> src, int mapperFeatures) in MapperConfig() argument 80 _mapperFeatures = mapperFeatures; in MapperConfig()
|
D | MapperConfigBase.java | 186 protected MapperConfigBase(MapperConfigBase<CFG,T> src, int mapperFeatures) in MapperConfigBase() argument 188 super(src, mapperFeatures); in MapperConfigBase() 276 protected abstract T _withMapperFeatures(int mapperFeatures); in _withMapperFeatures() argument
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | SerializationConfig.java | 179 int mapperFeatures, int serFeatures, in SerializationConfig() argument 183 super(src, mapperFeatures); in SerializationConfig() 298 protected final SerializationConfig _withMapperFeatures(int mapperFeatures) { in _withMapperFeatures() argument 299 return new SerializationConfig(this, mapperFeatures, _serFeatures, in _withMapperFeatures()
|
D | DeserializationConfig.java | 169 int mapperFeatures, int deserFeatures, in DeserializationConfig() argument 173 super(src, mapperFeatures); in DeserializationConfig() 308 protected final DeserializationConfig _withMapperFeatures(int mapperFeatures) { in _withMapperFeatures() argument 309 return new DeserializationConfig(this, mapperFeatures, _deserFeatures, in _withMapperFeatures()
|