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

prerna.sablecc2.comm.PixelJobStatus Maven / Gradle / Ivy

The newest version!
package prerna.sablecc2.comm;

public enum PixelJobStatus {

	CREATED ("Created"), 
	SUBMITTED ("Submitted"), 
	IN_PROGRESS ("InProgress"),
	PROGRESS_COMPLETE ("ProgressComplete"), 
	STREAMING ("Streaming"), 
	COMPLETE ("Complete"), 
	
	PAUSED ("Paused"), 
	ERROR ("Error"),
	UNKNOWN_JOB ("UnknownJob");

	private String value = "";

	PixelJobStatus(String value) {
		this.value = value;
	}
	
	public String getValue() {
		return this.value;
	}
	
	public String toString() {
		return this.value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy