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

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

Go to download

This project implements a JSON parser and serializer which operates around immutable data structures for the JSON elements.

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

import java.util.Objects;

public record JsonString(String value) implements Basic {
    public JsonString {
        value = Objects.requireNonNullElse(value, "");
    }

    @Override
    public String json() {
        return "\"%s\"".formatted(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy