@@ -361,7 +361,7 @@ public enum MapperFeature implements ConfigFeature
361
361
*<p>
362
362
* Note that there is additional performance overhead since incoming property
363
363
* names need to be lower-cased before comparison, for cases where there are upper-case
364
- * letters. Overhead for names that are already lower-case should be negligible however .
364
+ * letters. Overhead for names that are already lower-case should be negligible.
365
365
*<p>
366
366
* Feature is disabled by default.
367
367
*
@@ -373,7 +373,7 @@ public enum MapperFeature implements ConfigFeature
373
373
/**
374
374
* Feature that determines if Enum deserialization should be case sensitive or not.
375
375
* If enabled, Enum deserialization will ignore case, that is, case of incoming String
376
- * value and enum id (dependant on other settings, either `name()`, `toString()`, or
376
+ * value and enum id (depending on other settings, either `name()`, `toString()`, or
377
377
* explicit override) do not need to match.
378
378
* <p>
379
379
* Feature is disabled by default.
@@ -382,6 +382,20 @@ public enum MapperFeature implements ConfigFeature
382
382
*/
383
383
ACCEPT_CASE_INSENSITIVE_ENUMS (false ),
384
384
385
+ /**
386
+ * Feature that permits parsing some enumerated text-based value types but ignoring the case
387
+ * of the values on deserialization: for example, date/time type deserializers.
388
+ * Support for this feature depends on deserializer implementations using it.
389
+ *<p>
390
+ * Note, however, that regular {@code Enum} types follow {@link #ACCEPT_CASE_INSENSITIVE_ENUMS}
391
+ * setting instead.
392
+ *<p>
393
+ * Feature is disabled by default.
394
+ *
395
+ * @since 2.10
396
+ */
397
+ ACCEPT_CASE_INSENSITIVE_VALUES (false ),
398
+
385
399
/**
386
400
* Feature that can be enabled to make property names be
387
401
* overridden by wrapper name (usually detected with annotations
0 commit comments