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

prompto.debug.ProcessStatus Maven / Gradle / Ivy

The newest version!
package prompto.debug;

public enum ProcessStatus {
	PROCESS_STARTING,
	PROCESS_RUNNING,
	PROCESS_TERMINATING,
	PROCESS_TERMINATED,
	PROCESS_UNREACHABLE;
	
	@Override
	public String toString() {
		return name().substring(0,1) + name().substring(1).toLowerCase();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy