io.deepsense.neptune.clientlibrary.models.JobState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-client-library Show documentation
Show all versions of neptune-client-library Show documentation
Enables integration with Neptune in your Java code
/**
* Copyright (c) 2016, CodiLime Inc.
*/
package io.deepsense.neptune.clientlibrary.models;
public enum JobState {
QUEUED("queued"),
RUNNING("running"),
SUCCEEDED("succeeded"),
FAILED("failed"),
ABORTED("aborted");
private String value;
JobState(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy