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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe job has been cancelled.The job is in the process of being cancelled.The job has been deleted.The job is in the process of being deleted.The job is being executed by job processor.he job execution has failed.The job is new.The job is submitted for execution.The job has completed successfullyThe job execution has timed out.The job is waiting for available job processor. -
Method Summary
Modifier and TypeMethodDescriptionstatic JobStatusModelTypeReturns the enum constant of this class with the specified name.static JobStatusModelType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CANCELLED
The job has been cancelled. -
CANCELLING
The job is in the process of being cancelled. -
DELETED
The job has been deleted. -
DELETING
The job is in the process of being deleted. -
EXECUTING
The job is being executed by job processor. -
FAILED
he job execution has failed. -
NEW
The job is new. -
SUBMITTED
The job is submitted for execution. -
SUCCEEDED
The job has completed successfully -
TIMED_OUT
The job execution has timed out. -
WAITING
The job is waiting for available job processor.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-