
org.zalando.zjsonpatch.Constants 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
The newest version!
package org.zalando.zjsonpatch;
/**
* Field names of JSON Patch attributes.
*/
abstract class Constants {
/**
* Patch operation type field name.
*/
public static String OP = "op";
/**
* Patch operation value field name.
*/
public static String VALUE = "value";
/**
* Patch operation path field name.
*/
public static String PATH = "path";
/**
* Patch operation from field name (used for move).
*/
public static String FROM = "from";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy