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

de.undercouch.citeproc.helper.json.JsonObject Maven / Gradle / Ivy

package de.undercouch.citeproc.helper.json;

/**
 * Classes that implement this interface are able to convert their
 * contents to a JSON object
 * @author Michel Kraemer
 */
public interface JsonObject {
    /**
     * Converts this object to a JSON object
     * @param builder a builder that can be used to perform the conversion
     * @return the JSON object
     */
    Object toJson(JsonBuilder builder);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy