Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/
DMapEntrySerializer.java136 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/
DReferenceTypeSerializer.java115 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 …]
DAtomicReferenceSerializer.java30 Object suppressableValue, boolean suppressNulls) in AtomicReferenceSerializer() argument
33 suppressableValue, suppressNulls); in AtomicReferenceSerializer()
47 boolean suppressNulls) in withContentInclusion() argument
51 suppressableValue, suppressNulls); in withContentInclusion()
DMapSerializer.java264 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/
DPropertyBuilder.java128 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()
DBasicSerializerFactory.java874 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 …]
DBeanPropertyWriter.java214 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()