Enum EliminationActionUnitStatus
- java.lang.Object
-
- java.lang.Enum<EliminationActionUnitStatus>
-
- fr.gouv.vitam.worker.core.plugin.elimination.model.EliminationActionUnitStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EliminationActionUnitStatus>
public enum EliminationActionUnitStatus extends java.lang.Enum<EliminationActionUnitStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GLOBAL_STATUS_CONFLICT
GLOBAL_STATUS_KEEP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EliminationActionUnitStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EliminationActionUnitStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GLOBAL_STATUS_KEEP
public static final EliminationActionUnitStatus GLOBAL_STATUS_KEEP
-
GLOBAL_STATUS_CONFLICT
public static final EliminationActionUnitStatus GLOBAL_STATUS_CONFLICT
-
-
Method Detail
-
values
public static EliminationActionUnitStatus[] 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 (EliminationActionUnitStatus c : EliminationActionUnitStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EliminationActionUnitStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-