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

toolgood.algorithm.litJson.IJsonWrapper Maven / Gradle / Ivy

package toolgood.algorithm.litJson;

import java.math.BigDecimal;

public interface IJsonWrapper {
    
    boolean IsArray();
    boolean IsBoolean();
    boolean IsDouble();
    boolean IsObject();
    boolean IsString();
    boolean IsNull();

    void SetBoolean(boolean val);
    void SetDouble(BigDecimal val);
    void SetJsonType(JsonType type);
    void SetString(String val);
    void SetNull();

    void Add(IJsonWrapper val);

    void Set(String key, IJsonWrapper val);


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy