Enum EliminationAnalysisStatusForOriginatingAgency
- java.lang.Object
-
- java.lang.Enum<EliminationAnalysisStatusForOriginatingAgency>
-
- fr.gouv.vitam.worker.core.plugin.elimination.model.EliminationAnalysisStatusForOriginatingAgency
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EliminationAnalysisStatusForOriginatingAgency>
public enum EliminationAnalysisStatusForOriginatingAgency extends java.lang.Enum<EliminationAnalysisStatusForOriginatingAgency>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DESTROY
FINAL_ACTION_INCONSISTENCY
KEEP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EliminationAnalysisStatusForOriginatingAgency
getValue(boolean isDestroyable, boolean isFinalActionInconsistency)
static EliminationAnalysisStatusForOriginatingAgency
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EliminationAnalysisStatusForOriginatingAgency[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DESTROY
public static final EliminationAnalysisStatusForOriginatingAgency DESTROY
-
KEEP
public static final EliminationAnalysisStatusForOriginatingAgency KEEP
-
FINAL_ACTION_INCONSISTENCY
public static final EliminationAnalysisStatusForOriginatingAgency FINAL_ACTION_INCONSISTENCY
-
-
Method Detail
-
values
public static EliminationAnalysisStatusForOriginatingAgency[] 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 (EliminationAnalysisStatusForOriginatingAgency c : EliminationAnalysisStatusForOriginatingAgency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EliminationAnalysisStatusForOriginatingAgency 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
-
getValue
public static EliminationAnalysisStatusForOriginatingAgency getValue(boolean isDestroyable, boolean isFinalActionInconsistency)
-
-