1
1
package com .fasterxml .jackson .databind .cfg ;
2
2
3
3
/**
4
- * New Datatype-specific features added in Jackson 2.14.
4
+ * New Datatype-specific configuration options related to handling of
5
+ * {@link com.fasterxml.jackson.databind.JsonNode} types.
5
6
*
6
7
* @since 2.14
7
8
*/
@@ -10,32 +11,30 @@ public enum JsonNodeFeature implements DatatypeFeature
10
11
// // // Direct Read/Write configuration settings
11
12
12
13
/**
13
- * When reading {@code JsonNode}s are null valued properties included as explicit
14
- * {@code NullNode}s in resulting {@code ObjectNode} or skipped?
14
+ * When reading {@link com.fasterxml.jackson.databind.JsonNode}s are null valued properties included as explicit
15
+ * {@code NullNode}s in resulting {@link com.fasterxml.jackson.databind.node.ObjectNode}
16
+ * or skipped?
15
17
*<p>
16
18
* Default value: {@code true}
17
19
*/
18
20
READ_NULL_PROPERTIES (true ),
19
21
20
22
/**
21
23
* When writing {@code JsonNode}s are null valued properties written as explicit
22
- * JSON {@code null}s ior skipped?
24
+ * JSON {@code null}s or skipped?
23
25
*<p>
24
26
* Default value: {@code true}
25
27
*/
26
28
WRITE_NULL_PROPERTIES (true ),
27
29
28
30
// // // Merge configuration settings
29
31
30
- /**
31
- *
32
- */
33
- ALLOW_ARRAY_MERGE (true ),
32
+ // // // 03-Aug-2022, tatu: Possible other additions:
33
+
34
+ // ALLOW_ARRAY_MERGE(true),
35
+
36
+ // ALLOW_OBJECT_MERGE(true),
34
37
35
- /**
36
- *
37
- */
38
- ALLOW_OBJECT_MERGE (true ),
39
38
;
40
39
41
40
private final static int FEATURE_INDEX = DatatypeFeatures .FEATURE_INDEX_JSON_NODE ;
0 commit comments