All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.jackson.databind.cfg.JsonNodeFeature Maven / Gradle / Ivy

There is a newer version: 2024.03.6
Show newest version
package com.fasterxml.jackson.databind.cfg;

/**
 * New Datatype-specific configuration options related to handling of
 * {@link com.fasterxml.jackson.databind.JsonNode} types.
 *
 * @since 2.14
 */
public enum JsonNodeFeature implements DatatypeFeature
{
    // // // Direct Read/Write configuration settings

    /**
     * When reading {@link com.fasterxml.jackson.databind.JsonNode}s are null valued properties included as explicit
     * {@code NullNode}s in resulting {@link com.fasterxml.jackson.databind.node.ObjectNode}
     * or skipped?
     *

* Default value: {@code true} */ READ_NULL_PROPERTIES(true), /** * When writing {@code JsonNode}s are null valued properties written as explicit * JSON {@code null}s or skipped? *

* Default value: {@code true} */ WRITE_NULL_PROPERTIES(true), // // // Merge configuration settings // // // 03-Aug-2022, tatu: Possible other additions: // ALLOW_ARRAY_MERGE(true), // ALLOW_OBJECT_MERGE(true), ; private final static int FEATURE_INDEX = DatatypeFeatures.FEATURE_INDEX_JSON_NODE; /** * Whether feature is enabled or disabled by default. */ private final boolean _enabledByDefault; private final int _mask; private JsonNodeFeature(boolean enabledByDefault) { _enabledByDefault = enabledByDefault; _mask = (1 << ordinal()); } @Override public boolean enabledByDefault() { return _enabledByDefault; } @Override public boolean enabledIn(int flags) { return (flags & _mask) != 0; } @Override public int getMask() { return _mask; } @Override public int featureIndex() { return FEATURE_INDEX; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy