io.inversion.json.JSNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inversion-json Show documentation
Show all versions of inversion-json Show documentation
Inversion Cloud API Engine
package io.inversion.json;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.*;
@JsonDeserialize(using = JSNodeDeserializer.class)
public interface JSNode extends JSGet, JSFind, JSDiff, JSPatch {
Object get(Object key);
Object put(Object key, Object value);
Object removeProp(Object key);
Collection
© 2015 - 2025 Weber Informatics LLC | Privacy Policy