Enum Class ScheduleEntry.ParallelExecutionMode
java.lang.Object
java.lang.Enum<ScheduleEntry.ParallelExecutionMode>
de.espirit.firstspirit.access.schedule.ScheduleEntry.ParallelExecutionMode
- All Implemented Interfaces:
Serializable
,Comparable<ScheduleEntry.ParallelExecutionMode>
,Constable
- Enclosing interface:
- ScheduleEntry
public static enum ScheduleEntry.ParallelExecutionMode
extends Enum<ScheduleEntry.ParallelExecutionMode>
The modes used to set the
ParallelExecutionMode
of this entry- Since:
- 4.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAllow parallel execution.Do not allow parallel execution.Do not allow parallel execution, wait for others. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ScheduleEntry.ParallelExecutionMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISALLOWED
Do not allow parallel execution.- Since:
- 4.0
-
ALLOWED
Allow parallel execution.- Since:
- 4.0
-
DISALLOWED_WAIT
Do not allow parallel execution, wait for others.- Since:
- 4.0
-
-
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
-