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

com.evrythng.thng.resource.model.store.jobs.Status Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (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