Skip to content

Commit 9efeb2a

Browse files
committed
javadoc fix
1 parent f025ecd commit 9efeb2a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/main/java/com/fasterxml/jackson/annotation/JsonSetter.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ public enum Nulls
9292
{
9393
/**
9494
* 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)
9698
*/
9799
SET,
98100

@@ -339,15 +341,15 @@ public Value withMerge(Boolean merge) {
339341

340342
/**
341343
* 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.
343345
*/
344346
public Nulls nonDefaultValueNulls() {
345347
return (_nulls == Nulls.DEFAULT) ? null : _nulls;
346348
}
347349

348350
/**
349351
* 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.
351353
*/
352354
public Nulls nonDefaultContentNulls() {
353355
return (_contentNulls == Nulls.DEFAULT) ? null : _contentNulls;

0 commit comments

Comments
 (0)