Package fr.gouv.vitam.processing.common
Enum CheckObjectsNumberMessage
- java.lang.Object
-
- java.lang.Enum<CheckObjectsNumberMessage>
-
- fr.gouv.vitam.processing.common.CheckObjectsNumberMessage
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CheckObjectsNumberMessage>
public enum CheckObjectsNumberMessage extends java.lang.Enum<CheckObjectsNumberMessage>
Display logged messages
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COUNT_DIGITAL_OBJECT_CONSISTENT
COUNT_DIGITAL_OBJECT_MANIFEST
message for count digital object in manifestCOUNT_DIGITAL_OBJECT_SIP
massage for count digital object in sipDUPLICATED_DIGITAL_OBJECT_WORKSPACE
message for duplicated digital objectLIST_OF_UNDECLARED_DIGITAL_OBJECT
message for list of undeclared digital objectsNOT_FOUND_DIGITAL_OBJECT_MANIFEST
message for not found digital object in manifestNOT_FOUND_DIGITAL_OBJECT_WORKSPACE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
getMessage, return the logged messagestatic CheckObjectsNumberMessage
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CheckObjectsNumberMessage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DUPLICATED_DIGITAL_OBJECT_WORKSPACE
public static final CheckObjectsNumberMessage DUPLICATED_DIGITAL_OBJECT_WORKSPACE
message for duplicated digital object
-
LIST_OF_UNDECLARED_DIGITAL_OBJECT
public static final CheckObjectsNumberMessage LIST_OF_UNDECLARED_DIGITAL_OBJECT
message for list of undeclared digital objects
-
COUNT_DIGITAL_OBJECT_SIP
public static final CheckObjectsNumberMessage COUNT_DIGITAL_OBJECT_SIP
massage for count digital object in sip
-
COUNT_DIGITAL_OBJECT_MANIFEST
public static final CheckObjectsNumberMessage COUNT_DIGITAL_OBJECT_MANIFEST
message for count digital object in manifest
-
NOT_FOUND_DIGITAL_OBJECT_MANIFEST
public static final CheckObjectsNumberMessage NOT_FOUND_DIGITAL_OBJECT_MANIFEST
message for not found digital object in manifest
-
NOT_FOUND_DIGITAL_OBJECT_WORKSPACE
public static final CheckObjectsNumberMessage NOT_FOUND_DIGITAL_OBJECT_WORKSPACE
-
COUNT_DIGITAL_OBJECT_CONSISTENT
public static final CheckObjectsNumberMessage COUNT_DIGITAL_OBJECT_CONSISTENT
-
-
Method Detail
-
values
public static CheckObjectsNumberMessage[] 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 (CheckObjectsNumberMessage c : CheckObjectsNumberMessage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CheckObjectsNumberMessage 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
-
getMessage
public java.lang.String getMessage()
getMessage, return the logged message- Returns:
- message contain
-
-