@@ -343,15 +343,15 @@ public enum DeserializationFeature implements ConfigFeature
343
343
344
344
/**
345
345
* Feature that can be enabled to allow JSON empty String
346
- * value ("" ) to be bound as ` null` for POJOs and other structured
346
+ * value ({@code ""} ) to be bound as {@code null} for POJOs and other structured
347
347
* values ({@link java.util.Map}s, {@link java.util.Collection}s).
348
- * If disabled, standard POJOs can only be bound from JSON ` null` or
348
+ * If disabled, standard POJOs can only be bound from JSON {@code null} or
349
349
* JSON Object (standard meaning that no custom deserializers or
350
350
* constructors are defined; both of which can add support for other
351
351
* kinds of JSON values); if enabled, empty JSON String can be taken
352
352
* to be equivalent of JSON null.
353
353
*<p>
354
- * NOTE: this does NOT apply to scalar values such as booleans, numbers
354
+ * NOTE: this does NOT apply to scalar values such as Strings, booleans, numbers
355
355
* and date/time types;
356
356
* whether these can be coerced depends on
357
357
* {@link MapperFeature#ALLOW_COERCION_OF_SCALARS}.
@@ -362,12 +362,12 @@ public enum DeserializationFeature implements ConfigFeature
362
362
363
363
/**
364
364
* Feature that can be enabled to allow empty JSON Array
365
- * value (that is, < code> [ ]</code>) to be bound to POJOs as ` null` .
366
- * If disabled, standard POJOs can only be bound from JSON ` null` or
365
+ * value (that is, {@ code[ ]} to be bound to POJOs {@code null} .
366
+ * If disabled, standard POJOs can only be bound from JSON {@code null} or
367
367
* JSON Object (standard meaning that no custom deserializers or
368
368
* constructors are defined; both of which can add support for other
369
369
* kinds of JSON values); if enabled, empty JSON Array will be taken
370
- * to be equivalent of JSON null.
370
+ * to be equivalent of JSON {@code null} .
371
371
*<p>
372
372
* Feature is disabled by default.
373
373
*/
0 commit comments