Enum ChecksInformation.ChecksSourceDestination
- java.lang.Object
-
- java.lang.Enum<ChecksInformation.ChecksSourceDestination>
-
- fr.gouv.vitam.worker.core.plugin.probativevalue.pojo.ChecksInformation.ChecksSourceDestination
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ChecksInformation.ChecksSourceDestination>
- Enclosing class:
- ChecksInformation
public static enum ChecksInformation.ChecksSourceDestination extends java.lang.Enum<ChecksInformation.ChecksSourceDestination>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDITIONAL_TRACEABILITY
COMPUTATION
DATABASE
OFFER
TRACEABILITY_FILE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ChecksInformation.ChecksSourceDestination
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ChecksInformation.ChecksSourceDestination[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFFER
public static final ChecksInformation.ChecksSourceDestination OFFER
-
DATABASE
public static final ChecksInformation.ChecksSourceDestination DATABASE
-
TRACEABILITY_FILE
public static final ChecksInformation.ChecksSourceDestination TRACEABILITY_FILE
-
ADDITIONAL_TRACEABILITY
public static final ChecksInformation.ChecksSourceDestination ADDITIONAL_TRACEABILITY
-
COMPUTATION
public static final ChecksInformation.ChecksSourceDestination COMPUTATION
-
-
Method Detail
-
values
public static ChecksInformation.ChecksSourceDestination[] 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 (ChecksInformation.ChecksSourceDestination c : ChecksInformation.ChecksSourceDestination.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChecksInformation.ChecksSourceDestination 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
-
-