Home
last modified time | relevance | path

Searched refs:newMapperFlags (Results 1 – 1 of 1) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DMapperConfigBase.java292 int newMapperFlags = _mapperFeatures; in with() local
294 newMapperFlags |= f.getMask(); in with()
296 if (newMapperFlags == _mapperFeatures) { in with()
299 return _withMapperFeatures(newMapperFlags); in with()
310 int newMapperFlags = _mapperFeatures; in without() local
312 newMapperFlags &= ~f.getMask(); in without()
314 if (newMapperFlags == _mapperFeatures) { in without()
317 return _withMapperFeatures(newMapperFlags); in without()
324 int newMapperFlags; in with() local
326 newMapperFlags = _mapperFeatures | feature.getMask(); in with()
[all …]