net.sf.filePiper.model.ExecutionPhase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of file-piper Show documentation
Show all versions of file-piper Show documentation
This project is a GUI utility for processing files. It allows selecting a set of source files and a pipeline
of processes to apply onto those files. The applications shows in a nice-looking user interface where you can
define profiles for your repetitive tasks.
It provides pre-defined processors doing usual file manipulation tasks like: Copy, Head, Tail, Chunk, Search, Replace, Zip, Unzip...
But the biggest value of this file processor tool is the ability to add easily custom file processors written in java.
The newest version!
package net.sf.filePiper.model;
/**
* All possible execution phases of the pipeline/fileProcessors.
*
* @author berol
*/
public enum ExecutionPhase {
NONE(""), STARTING("Starting"), RUNNING("Running"), DONE("Done"), ABORTED("Aborted"), ERRORED("Error");
private String text;
ExecutionPhase(String txt) {
text = txt;
}
public String toString() {
return text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy