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