Uses of Class
uk.gov.gchq.gaffer.jobtracker.JobStatus
-
Packages that use JobStatus Package Description uk.gov.gchq.gaffer.jobtracker Data types describing Jobs in Gaffer (long running operations). -
-
Uses of JobStatus in uk.gov.gchq.gaffer.jobtracker
Methods in uk.gov.gchq.gaffer.jobtracker that return JobStatus Modifier and Type Method Description JobStatus
JobDetail. getStatus()
static JobStatus
JobStatus. valueOf(String name)
Returns the enum constant of this type with the specified name.static JobStatus[]
JobStatus. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in uk.gov.gchq.gaffer.jobtracker with parameters of type JobStatus Modifier and Type Method Description void
JobDetail. setStatus(JobStatus status)
JobDetail.Builder
JobDetail.Builder. status(JobStatus status)
Constructors in uk.gov.gchq.gaffer.jobtracker with parameters of type JobStatus Constructor Description JobDetail(String jobId, String parentJobId, User user, String opChain, String serialisedOperationChain, JobStatus jobStatus, String description, Repeat repeat)
JobDetail(String jobId, String parentJobId, User user, String opChain, JobStatus jobStatus, String description)
JobDetail(String jobId, String parentJobId, User user, OperationChain<?> opChain, JobStatus jobStatus, String description)
JobDetail(String jobId, User user, OperationChain<?> opChain, JobStatus jobStatus, String description)
-