Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DCoercionConfigs.java35 protected MutableCoercionConfig[] _perTypeCoercions; field in CoercionConfigs
60 _perTypeCoercions = perTypeCoercions; in CoercionConfigs()
74 if (_perTypeCoercions == null) { in copy()
77 final int size = _perTypeCoercions.length; in copy()
80 newPerType[i] = _copy(_perTypeCoercions[i]); in copy()
120 if (_perTypeCoercions == null) { in findOrCreateCoercion()
121 _perTypeCoercions = new MutableCoercionConfig[TARGET_TYPE_COUNT]; in findOrCreateCoercion()
123 MutableCoercionConfig config = _perTypeCoercions[type.ordinal()]; in findOrCreateCoercion()
125 _perTypeCoercions[type.ordinal()] = config = new MutableCoercionConfig(); in findOrCreateCoercion()
177 if ((_perTypeCoercions != null) && (targetType != null)) { in findCoercion()
[all …]