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

ai.databand.schema.DatasetOperationStatus Maven / Gradle / Ivy

There is a newer version: 1.0.26.1
Show newest version
/*
 * © Copyright Databand.ai, an IBM Company 2022
 */

package ai.databand.schema;

public enum DatasetOperationStatus {
    OK("OK"), NOK("NOK");

    private final String name;

    DatasetOperationStatus(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy