Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DCoercionConfigs.java40 protected Map<Class<?>, MutableCoercionConfig> _perClassCoercions; field in CoercionConfigs
61 _perClassCoercions = perClassCoercions; in CoercionConfigs()
84 if (_perClassCoercions == null) { in copy()
88 for (Map.Entry<Class<?>, MutableCoercionConfig> entry : _perClassCoercions.entrySet()) { in copy()
131 if (_perClassCoercions == null) { in findOrCreateCoercion()
132 _perClassCoercions = new HashMap<>(); in findOrCreateCoercion()
134 MutableCoercionConfig config = _perClassCoercions.get(type); in findOrCreateCoercion()
137 _perClassCoercions.put(type, config); in findOrCreateCoercion()
166 if ((_perClassCoercions != null) && (targetClass != null)) { in findCoercion()
167 MutableCoercionConfig cc = _perClassCoercions.get(targetClass); in findCoercion()
[all …]