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

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

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

/**
 * The enumeration of all known query parameter names of the REST endpoints.
 */
public enum QueryParamName {

    EXPERIMENT_KEY("experimentKey"), // string
    EXTENSION("extension"), // string
    EPOCH("epoch"), // integer
    STEP("step"), // integer
    SOURCE("source"), // string
    CONTEXT("context"), // string
    TYPE("type"), // string
    METADATA("metadata"), // json string
    FILE_NAME("fileName"), // string
    GROUPING_NAME("groupingName"), // string
    ARTIFACT_VERSION_ID("artifactVersionId"), // string
    IS_REMOTE("isRemote"), // boolean
    OVERWRITE("overwrite"), // boolean
    PROJECT_ID("projectId"), // string
    WORKSPACE_NAME("workspaceName"); // string

    private final String paramName;

    QueryParamName(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