Searched refs:_ignorableProps (Results 1 – 5 of 5) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | BeanDeserializerBuilder.java | 74 protected HashSet<String> _ignorableProps; field in BeanDeserializerBuilder 146 _ignorableProps = src._ignorableProps; in BeanDeserializerBuilder() 240 if (_ignorableProps == null) { in addIgnorable() 241 _ignorableProps = new HashSet<String>(); in addIgnorable() 243 _ignorableProps.add(propName); in addIgnorable() 357 return IgnorePropertiesUtil.shouldIgnore(name, _ignorableProps, _includableProps); in hasIgnorable() 403 … _beanDesc, propertyMap, _backRefProperties, _ignorableProps, _ignoreAllUnknown, _includableProps, in build() 486 … _beanDesc, valueType, propertyMap, _backRefProperties, _ignorableProps, _ignoreAllUnknown, in createBuilderBasedDeserializer()
|
D | BeanDeserializerBase.java | 136 final protected Set<String> _ignorableProps; field in BeanDeserializerBase 218 _ignorableProps = ignorableProps; in BeanDeserializerBase() 271 _ignorableProps = src._ignorableProps; in BeanDeserializerBase() 297 _ignorableProps = src._ignorableProps; in BeanDeserializerBase() 335 _ignorableProps = src._ignorableProps; in BeanDeserializerBase() 377 _ignorableProps = ignorableProps; in BeanDeserializerBase() 410 _ignorableProps = src._ignorableProps; in BeanDeserializerBase() 498 if (_ignorableProps != null || _includableProps != null) { in resolve() 501 … if (IgnorePropertiesUtil.shouldIgnore(prop.getName(), _ignorableProps, _includableProps)) { in resolve() 831 final Set<String> prevNamesToIgnore = contextual._ignorableProps; in _handleByNameInclusion() [all …]
|
D | BuilderBasedDeserializer.java | 417 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in _deserializeUsingPropertyBased() 620 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithUnwrapped() 686 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeUsingPropertyBasedWithUnwrapped() 731 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithUnwrapped() 791 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithExternalTypeId()
|
D | BeanDeserializer.java | 497 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in _deserializeUsingPropertyBased() 727 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithUnwrapped() 784 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithUnwrapped() 883 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeUsingPropertyBasedWithUnwrapped() 975 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeWithExternalTypeId() 1066 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in deserializeUsingPropertyBasedWithExternalTypeId()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/ |
D | ThrowableDeserializer.java | 124 if ((_ignorableProps != null) && _ignorableProps.contains(propName)) { in deserializeFromObject()
|