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

io.github.cuisse.json.JsonString Maven / Gradle / Ivy

The newest version!
package io.github.cuisse.json;

/**
 * @author Brayan Roman
 */
public record JsonString(String value) implements JsonValue {
    public static final JsonString EMPTY = new JsonString("");

    @Override
    public JsonType type() {
        return JsonType.STRING;
    }

    @Override
    public String toString() {
        return SimpleJsonPrinter.pretty(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy