![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.jobs.Status Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (c) Copyright 2016 EVRYTHNG Ltd London / Zurich
* www.evrythng.com
*/
package com.evrythng.thng.resource.model.store.jobs;
public enum Status {
ENQUEUED(false), STARTING(false), EXECUTING(false), CANCELING(false), COMPLETED(true), COMPLETED_WITH_FAILURES(true), CANCELLED(true), FAILED(true);
private final boolean terminal;
Status(final boolean terminal) {
this.terminal = terminal;
}
public boolean isTerminal() {
return terminal;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy