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

com.flipkart.zjsonpatch.CopyingApplyProcessor Maven / Gradle / Ivy

There is a newer version: 0.4.16
Show newest version
package com.flipkart.zjsonpatch;

import com.fasterxml.jackson.databind.JsonNode;
import java.util.EnumSet;

class CopyingApplyProcessor extends InPlaceApplyProcessor {

    CopyingApplyProcessor(JsonNode target) {
        this(target, CompatibilityFlags.defaults());
    }

    CopyingApplyProcessor(JsonNode target, EnumSet flags) {
        super(target.deepCopy(), flags);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy