Enum ChecksInformation.CheckedItem
- java.lang.Object
-
- java.lang.Enum<ChecksInformation.CheckedItem>
-
- fr.gouv.vitam.worker.core.plugin.probativevalue.pojo.ChecksInformation.CheckedItem
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ChecksInformation.CheckedItem>
- Enclosing class:
- ChecksInformation
public static enum ChecksInformation.CheckedItem extends java.lang.Enum<ChecksInformation.CheckedItem>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ChecksInformation.CheckedItem
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ChecksInformation.CheckedItem[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILE_DIGEST
public static final ChecksInformation.CheckedItem FILE_DIGEST
-
EVENT_LFC
public static final ChecksInformation.CheckedItem EVENT_LFC
-
EVENT_OBJECT_GROUP
public static final ChecksInformation.CheckedItem EVENT_OBJECT_GROUP
-
EVENT_OPERATION
public static final ChecksInformation.CheckedItem EVENT_OPERATION
-
MERKLE_TREE_ROOT_LFC_DIGEST
public static final ChecksInformation.CheckedItem MERKLE_TREE_ROOT_LFC_DIGEST
-
MERKLE_TREE_ROOT_OPERATION_DIGEST
public static final ChecksInformation.CheckedItem MERKLE_TREE_ROOT_OPERATION_DIGEST
-
TIMESTAMP_LFC
public static final ChecksInformation.CheckedItem TIMESTAMP_LFC
-
TIMESTAMP_OPERATION
public static final ChecksInformation.CheckedItem TIMESTAMP_OPERATION
-
PREVIOUS_TIMESTAMP_LFC
public static final ChecksInformation.CheckedItem PREVIOUS_TIMESTAMP_LFC
-
PREVIOUS_TIMESTAMP_OPERATION
public static final ChecksInformation.CheckedItem PREVIOUS_TIMESTAMP_OPERATION
-
MERKLE_TREE_ROOT_OBJECT_GROUP_DIGEST
public static final ChecksInformation.CheckedItem MERKLE_TREE_ROOT_OBJECT_GROUP_DIGEST
-
TIMESTAMP_OBJECT_GROUP
public static final ChecksInformation.CheckedItem TIMESTAMP_OBJECT_GROUP
-
PREVIOUS_TIMESTAMP_OBJECT_GROUP
public static final ChecksInformation.CheckedItem PREVIOUS_TIMESTAMP_OBJECT_GROUP
-
-
Method Detail
-
values
public static ChecksInformation.CheckedItem[] 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.CheckedItem c : ChecksInformation.CheckedItem.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.CheckedItem 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
-
-