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

ml.comet.experiment.impl.constants.FormParamName Maven / Gradle / Ivy

There is a newer version: 1.1.14
Show newest version
package ml.comet.experiment.impl.constants;

/**
 * Enumeration of all known form parameter names of the REST endpoints.
 */
public enum FormParamName {

    TAGS("tags"), // string list
    LINK("link"), // string
    METADATA("metadata"), // json string
    FILE("file"); // InputStream or FormDataContentDisposition

    private final String paramName;

    FormParamName(String paramName) {
        this.paramName = paramName;
    }

    public String paramName() {
        return this.paramName;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy