File tree 1 file changed +5
-3
lines changed
src/main/java/com/fasterxml/jackson/annotation
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,9 @@ public enum Nulls
92
92
{
93
93
/**
94
94
* Value that indicates that an input null should result in assignment
95
- * of Java `null` value of matching property.
95
+ * of Java `null` value of matching property (except where deserializer
96
+ * indicates other "null value" by overriding <code>getNullValue(...)</code>
97
+ * method)
96
98
*/
97
99
SET ,
98
100
@@ -339,15 +341,15 @@ public Value withMerge(Boolean merge) {
339
341
340
342
/**
341
343
* Returns same as {@link #getValueNulls()} unless value would be
342
- * {@link Nulls. DEFAULT} in which case `null` is returned.
344
+ * {@link JsonSetter.Nulls# DEFAULT} in which case `null` is returned.
343
345
*/
344
346
public Nulls nonDefaultValueNulls () {
345
347
return (_nulls == Nulls .DEFAULT ) ? null : _nulls ;
346
348
}
347
349
348
350
/**
349
351
* Returns same as {@link #getContentNulls()} unless value would be
350
- * {@link Nulls. DEFAULT} in which case `null` is returned.
352
+ * {@link JsonSetter.Nulls# DEFAULT} in which case `null` is returned.
351
353
*/
352
354
public Nulls nonDefaultContentNulls () {
353
355
return (_contentNulls == Nulls .DEFAULT ) ? null : _contentNulls ;
You can’t perform that action at this time.
0 commit comments