tech.deplant.commons.jodan.data.JsonValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-core Show documentation
Show all versions of commons-core Show documentation
Development framework for Everscale DApp development
The newest version!
package tech.deplant.commons.jodan.data;
import tech.deplant.commons.Strings;
import java.math.BigDecimal;
public sealed interface JsonValue extends JsonElement permits JsonBoolean, JsonNumber, JsonNull, JsonString {
}