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

net.hamnaberg.json.EncodeJson Maven / Gradle / Ivy

There is a newer version: 8.0.0
Show newest version
package net.hamnaberg.json;

import java.util.Optional;

public interface EncodeJson {
    Optional toJson(A value);

    default Json.JValue toJsonUnsafe(A value) {
        return toJson(value).orElse(null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy