com.flipkart.zjsonpatch.CompatibilityFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zjsonpatch Show documentation
Show all versions of zjsonpatch Show documentation
Java Library to find / apply JSON Patches according to RFC 6902
package com.flipkart.zjsonpatch;
import java.util.EnumSet;
/**
* Created by tomerga on 04/09/2016.
*/
public enum CompatibilityFlags {
MISSING_VALUES_AS_NULLS;
public static EnumSet defaults() {
return EnumSet.noneOf(CompatibilityFlags.class);
}
}