Searched refs:IgnorePropertiesUtil (Results 1 – 11 of 11) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | BuilderBasedDeserializer.java | 11 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 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 | 11 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 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()
|
D | BeanDeserializerBuilder.java | 15 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 357 return IgnorePropertiesUtil.shouldIgnore(name, _ignorableProps, _includableProps); in hasIgnorable()
|
D | BeanDeserializerBase.java | 501 … if (IgnorePropertiesUtil.shouldIgnore(prop.getName(), _ignorableProps, _includableProps)) { in resolve() 844 …final Set<String> newNamesToInclude = IgnorePropertiesUtil.combineNamesToInclude(prevNamesToInclud… in _handleByNameInclusion() 1654 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in handleUnknownVanilla() 1682 if (IgnorePropertiesUtil.shouldIgnore(propName, _ignorableProps, _includableProps)) { in handleUnknownProperty()
|
D | BeanDeserializerFactory.java | 17 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 694 if (IgnorePropertiesUtil.shouldIgnore(name, ignored, included)) { in filterBeanProps()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/ |
D | MapDeserializer.java | 21 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 102 protected IgnorePropertiesUtil.Checker _inclusionChecker; 177 _inclusionChecker = IgnorePropertiesUtil.buildCheckerIfNeeded(ignorable, includable); in MapDeserializer() 238 …_inclusionChecker = IgnorePropertiesUtil.buildCheckerIfNeeded(_ignorableProperties, _includablePro… in setIgnorableProperties() 244 …_inclusionChecker = IgnorePropertiesUtil.buildCheckerIfNeeded(_ignorableProperties, _includablePro… in setIgnorableProperties() 249 …_inclusionChecker = IgnorePropertiesUtil.buildCheckerIfNeeded(_ignorableProperties, _includablePro… in setIncludableProperties()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/ |
D | IgnorePropertiesUtil.java | 11 public class IgnorePropertiesUtil class
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | MapSerializer.java | 27 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 153 protected final IgnorePropertiesUtil.Checker _inclusionChecker; 201 … _inclusionChecker = IgnorePropertiesUtil.buildCheckerIfNeeded(_ignoredEntries, _includedEntries); in MapSerializer() 246 … _inclusionChecker = IgnorePropertiesUtil.buildCheckerIfNeeded(_ignoredEntries, _includedEntries); in MapSerializer()
|
D | BeanSerializerBase.java | 29 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 202 if (IgnorePropertiesUtil.shouldIgnore(bpw.getName(), toIgnore, toInclude)) { in BeanSerializerBase()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/ |
D | BeanPropertyMap.java | 19 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 412 if (!IgnorePropertiesUtil.shouldIgnore(prop.getName(), toExclude, toInclude)) { in withoutProperties()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/ |
D | BeanSerializerFactory.java | 27 import com.fasterxml.jackson.databind.util.IgnorePropertiesUtil; 653 if (IgnorePropertiesUtil.shouldIgnore(it.next().getName(), ignored, included)) { in filterBeanProperties()
|