Searched refs:suppressNulls (Results 1 – 7 of 7) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/ |
D | MapEntrySerializer.java | 136 Object suppressableValue, boolean suppressNulls) in MapEntrySerializer() argument 150 _suppressNulls = suppressNulls; in MapEntrySerializer() 164 Object suppressableValue, boolean suppressNulls) { in withResolved() argument 166 keySerializer, valueSerializer, suppressableValue, suppressNulls); in withResolved() 173 boolean suppressNulls) { in withContentInclusion() argument 175 && (_suppressNulls == suppressNulls)) { in withContentInclusion() 179 _keySerializer, _valueSerializer, suppressableValue, suppressNulls); in withContentInclusion() 225 boolean suppressNulls = _suppressNulls; in createContextual() 234 suppressNulls = true; in createContextual() 242 suppressNulls = true; in createContextual() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | ReferenceTypeSerializer.java | 115 Object suppressableValue, boolean suppressNulls) in ReferenceTypeSerializer() argument 126 _suppressNulls = suppressNulls; in ReferenceTypeSerializer() 177 boolean suppressNulls); in withContentInclusion() argument 236 boolean suppressNulls; in createContextual() 240 suppressNulls = true; in createContextual() 248 suppressNulls = true; in createContextual() 252 suppressNulls = true; in createContextual() 258 suppressNulls = true; in createContextual() 260 suppressNulls = provider.includeFilterSuppressNulls(valueToSuppress); in createContextual() 265 suppressNulls = true; in createContextual() [all …]
|
D | AtomicReferenceSerializer.java | 30 Object suppressableValue, boolean suppressNulls) in AtomicReferenceSerializer() argument 33 suppressableValue, suppressNulls); in AtomicReferenceSerializer() 47 boolean suppressNulls) in withContentInclusion() argument 51 suppressableValue, suppressNulls); in withContentInclusion()
|
D | MapSerializer.java | 264 Object suppressableValue, boolean suppressNulls) in MapSerializer() argument 282 _suppressNulls = suppressNulls; in MapSerializer() 358 public MapSerializer withContentInclusion(Object suppressableValue, boolean suppressNulls) { in withContentInclusion() argument 359 if ((suppressableValue == _suppressableValue) && (suppressNulls == _suppressNulls)) { in withContentInclusion() 363 return new MapSerializer(this, _valueTypeSerializer, suppressableValue, suppressNulls); in withContentInclusion() 567 boolean suppressNulls; in createContextual() 571 suppressNulls = true; in createContextual() 579 suppressNulls = true; in createContextual() 583 suppressNulls = true; in createContextual() 589 suppressNulls = true; in createContextual() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/ |
D | PropertyBuilder.java | 128 boolean suppressNulls = false; in buildWriter() 181 suppressNulls = true; in buildWriter() 184 suppressNulls = true; in buildWriter() 193 suppressNulls = true; in buildWriter() 201 suppressNulls = true; in buildWriter() 208 suppressNulls = true; in buildWriter() 210 suppressNulls = prov.includeFilterSuppressNulls(valueToSuppress); in buildWriter() 214 suppressNulls = true; in buildWriter() 231 ser, typeSer, serializationType, suppressNulls, valueToSuppress, views); in buildWriter()
|
D | BasicSerializerFactory.java | 874 boolean suppressNulls = true; // almost always, but possibly not with CUSTOM in _checkMapContentInclusion() 896 suppressNulls = true; in _checkMapContentInclusion() 898 suppressNulls = prov.includeFilterSuppressNulls(valueToSuppress); in _checkMapContentInclusion() 906 return mapSer.withContentInclusion(valueToSuppress, suppressNulls); in _checkMapContentInclusion() 942 boolean suppressNulls = true; // almost always, but possibly not with CUSTOM in buildMapEntrySerializer() 963 suppressNulls = true; in buildMapEntrySerializer() 965 suppressNulls = prov.includeFilterSuppressNulls(valueToSuppress); in buildMapEntrySerializer() 973 return ser.withContentInclusion(valueToSuppress, suppressNulls); in buildMapEntrySerializer() 1120 boolean suppressNulls; in buildAtomicReferenceSerializer() 1125 suppressNulls = false; in buildAtomicReferenceSerializer() [all …]
|
D | BeanPropertyWriter.java | 214 boolean suppressNulls, Object suppressableValue, in BeanPropertyWriter() argument 243 _suppressNulls = suppressNulls; in BeanPropertyWriter() 256 boolean suppressNulls, Object suppressableValue) in BeanPropertyWriter() argument 259 ser, typeSer, serType, suppressNulls, suppressableValue, in BeanPropertyWriter()
|