@@ -370,15 +370,15 @@ public enum DeserializationFeature implements ConfigFeature
370
370
371
371
/**
372
372
* Feature that can be enabled to allow JSON empty String
373
- * value ("" ) to be bound as ` null` for POJOs and other structured
373
+ * value ({@code ""} ) to be bound as {@code null} for POJOs and other structured
374
374
* values ({@link java.util.Map}s, {@link java.util.Collection}s).
375
- * If disabled, standard POJOs can only be bound from JSON ` null` or
375
+ * If disabled, standard POJOs can only be bound from JSON {@code null} or
376
376
* JSON Object (standard meaning that no custom deserializers or
377
377
* constructors are defined; both of which can add support for other
378
378
* kinds of JSON values); if enabled, empty JSON String can be taken
379
379
* to be equivalent of JSON null.
380
380
*<p>
381
- * NOTE: this does NOT apply to scalar values such as booleans, numbers
381
+ * NOTE: this does NOT apply to scalar values such as Strings, booleans, numbers
382
382
* and date/time types;
383
383
* whether these can be coerced depends on
384
384
* {@link MapperFeature#ALLOW_COERCION_OF_SCALARS}.
@@ -389,13 +389,13 @@ public enum DeserializationFeature implements ConfigFeature
389
389
390
390
/**
391
391
* Feature that can be enabled to allow empty JSON Array
392
- * value (that is, < code> [ ]</code>) to be bound to POJOs (and
393
- * with 2.9, other values too) as ` null` .
394
- * If disabled, standard POJOs can only be bound from JSON ` null` or
392
+ * value (that is, {@ code[ ]} to be bound to POJOs (and
393
+ * with 2.9, other values too) as {@code null} .
394
+ * If disabled, standard POJOs can only be bound from JSON {@code null} or
395
395
* JSON Object (standard meaning that no custom deserializers or
396
396
* constructors are defined; both of which can add support for other
397
397
* kinds of JSON values); if enabled, empty JSON Array will be taken
398
- * to be equivalent of JSON null.
398
+ * to be equivalent of JSON {@code null} .
399
399
*<p>
400
400
* Feature is disabled by default.
401
401
*
0 commit comments