Package io.imast.work4j.model.execution
Enum CompletionSeverity
- java.lang.Object
-
- java.lang.Enum<CompletionSeverity>
-
- io.imast.work4j.model.execution.CompletionSeverity
-
- All Implemented Interfaces:
Serializable,Comparable<CompletionSeverity>
public enum CompletionSeverity extends Enum<CompletionSeverity> implements Serializable
The completion severity definition- Author:
- davitp
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELLATIONThe cancellation severity in case of manual interruptFAILThe indication of unsuccessful completionSUCCESSThe indication of successful completionWARNINGThe indication of successful completion with warnings
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CompletionSeverityvalueOf(String name)Returns the enum constant of this type with the specified name.static CompletionSeverity[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final CompletionSeverity SUCCESS
The indication of successful completion
-
WARNING
public static final CompletionSeverity WARNING
The indication of successful completion with warnings
-
CANCELLATION
public static final CompletionSeverity CANCELLATION
The cancellation severity in case of manual interrupt
-
FAIL
public static final CompletionSeverity FAIL
The indication of unsuccessful completion
-
-
Method Detail
-
values
public static CompletionSeverity[] 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 (CompletionSeverity c : CompletionSeverity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompletionSeverity 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
-
-