Enum UpdateUnitKey
- java.lang.Object
-
- java.lang.Enum<UpdateUnitKey>
-
- fr.gouv.vitam.metadata.core.model.UpdateUnitKey
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UpdateUnitKey>
public enum UpdateUnitKey extends java.lang.Enum<UpdateUnitKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECK_UNIT_SCHEMA
UNIT_METADATA_NO_CHANGES
UNIT_METADATA_NO_NEW_DATA
UNIT_METADATA_UPDATE
UNIT_METADATA_UPDATE_CHECK_DT
UNIT_UNKNOWN_OR_FORBIDDEN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UpdateUnitKey
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UpdateUnitKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNIT_METADATA_UPDATE_CHECK_DT
public static final UpdateUnitKey UNIT_METADATA_UPDATE_CHECK_DT
-
UNIT_METADATA_UPDATE
public static final UpdateUnitKey UNIT_METADATA_UPDATE
-
CHECK_UNIT_SCHEMA
public static final UpdateUnitKey CHECK_UNIT_SCHEMA
-
UNIT_UNKNOWN_OR_FORBIDDEN
public static final UpdateUnitKey UNIT_UNKNOWN_OR_FORBIDDEN
-
UNIT_METADATA_NO_NEW_DATA
public static final UpdateUnitKey UNIT_METADATA_NO_NEW_DATA
-
UNIT_METADATA_NO_CHANGES
public static final UpdateUnitKey UNIT_METADATA_NO_CHANGES
-
-
Method Detail
-
values
public static UpdateUnitKey[] 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 (UpdateUnitKey c : UpdateUnitKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateUnitKey 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
-
-