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

ml.comet.experiment.impl.rest.ArtifactVersionState Maven / Gradle / Ivy

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

/**
 * Defines state of the particular version of the artifact.
 */
public enum ArtifactVersionState {
    OPEN(0),
    CLOSED(1),
    ERROR(2);

    private final Integer value;

    ArtifactVersionState(Integer value) {
        this.value = value;
    }

    public Integer getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy