When querying the Status-column of a Job, StatusCodes are used instead of descriptions of statusses (like Completed). The following code can be execute (e.g in the Shell) to list all job statusses:
{ JobStatus[] js = JobStatus.values(); for(int i=0; i < js.length; i++) { jcsOut.println(js[i].getCodeEx() + " " + js[i].name()+ " (" + js[i].getState().name()+")"); } }
Output (First rows): - New (New) P Chained (Initial) T Skipped (Final) J Disabled (Initial) j Ignored (Final) D Delayed (Initial) N Never (Initial) F Overdue (Other) B QueueHeld (Pending) S Scheduled (Initial) o ConsoleRestart (Initial) H Held (Initial) V EventWait (Pending)