Enum Class JobStatusModelType

java.lang.Object
java.lang.Enum<JobStatusModelType>
org.gcube.social_networking.socialnetworking.model.beans.JobStatusModelType
All Implemented Interfaces:
Serializable, Comparable<JobStatusModelType>, Constable

public enum JobStatusModelType extends Enum<JobStatusModelType>
  • Enum Constant Details

    • CANCELLED

      public static final JobStatusModelType CANCELLED
      The job has been cancelled.
    • CANCELLING

      public static final JobStatusModelType CANCELLING
      The job is in the process of being cancelled.
    • DELETED

      public static final JobStatusModelType DELETED
      The job has been deleted.
    • DELETING

      public static final JobStatusModelType DELETING
      The job is in the process of being deleted.
    • EXECUTING

      public static final JobStatusModelType EXECUTING
      The job is being executed by job processor.
    • FAILED

      public static final JobStatusModelType FAILED
      he job execution has failed.
    • NEW

      public static final JobStatusModelType NEW
      The job is new.
    • SUBMITTED

      public static final JobStatusModelType SUBMITTED
      The job is submitted for execution.
    • SUCCEEDED

      public static final JobStatusModelType SUCCEEDED
      The job has completed successfully
    • TIMED_OUT

      public static final JobStatusModelType TIMED_OUT
      The job execution has timed out.
    • WAITING

      public static final JobStatusModelType WAITING
      The job is waiting for available job processor.
  • Method Details

    • values

      public static JobStatusModelType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static JobStatusModelType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null