Package org.dspace.content
Enum ProcessStatus
- java.lang.Object
-
- java.lang.Enum<ProcessStatus>
-
- org.dspace.content.ProcessStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessStatus>
public enum ProcessStatus extends Enum<ProcessStatus>
This Enum holds a representation of all the possible states that a Process can be in
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCHEDULED
public static final ProcessStatus SCHEDULED
-
RUNNING
public static final ProcessStatus RUNNING
-
COMPLETED
public static final ProcessStatus COMPLETED
-
FAILED
public static final ProcessStatus FAILED
-
-
Method Detail
-
values
public static ProcessStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProcessStatus c : ProcessStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-