Enum StorageMessage
- java.lang.Object
-
- java.lang.Enum<StorageMessage>
-
- fr.gouv.vitam.common.storage.constants.StorageMessage
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StorageMessage>
public enum StorageMessage extends java.lang.Enum<StorageMessage>
Display logged messages from workspace
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEGINNING_GET_LIST_OF_DIGITAL_OBJECT
Beginning of getting List of Digital ObjectBEGINNING_GET_URI_LIST_OF_DIGITAL_OBJECT
Beginning of getting Uri List of Digital ObjectBEGINNING_GET_URI_LIST_OF_FOLDER
Beginning of getting Uri List of foldersENDING_GET_LIST_OF_DIGITAL_OBJECT
Ending of getting List of Digital ObjectENDING_GET_URI_LIST_OF_DIGITAL_OBJECT
Ending of getting Uri List of Digital ObjectENDING_GET_URI_LIST_OF_FOLDER
Ending of getting Uri List of foldersURI_LIST_OF_DIGITAL_OBJECT_EMPTY
Uri list of digital objects empty
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
getter for attribute messagestatic StorageMessage
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StorageMessage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEGINNING_GET_LIST_OF_DIGITAL_OBJECT
public static final StorageMessage BEGINNING_GET_LIST_OF_DIGITAL_OBJECT
Beginning of getting List of Digital Object
-
BEGINNING_GET_URI_LIST_OF_DIGITAL_OBJECT
public static final StorageMessage BEGINNING_GET_URI_LIST_OF_DIGITAL_OBJECT
Beginning of getting Uri List of Digital Object
-
BEGINNING_GET_URI_LIST_OF_FOLDER
public static final StorageMessage BEGINNING_GET_URI_LIST_OF_FOLDER
Beginning of getting Uri List of folders
-
ENDING_GET_LIST_OF_DIGITAL_OBJECT
public static final StorageMessage ENDING_GET_LIST_OF_DIGITAL_OBJECT
Ending of getting List of Digital Object
-
ENDING_GET_URI_LIST_OF_DIGITAL_OBJECT
public static final StorageMessage ENDING_GET_URI_LIST_OF_DIGITAL_OBJECT
Ending of getting Uri List of Digital Object
-
ENDING_GET_URI_LIST_OF_FOLDER
public static final StorageMessage ENDING_GET_URI_LIST_OF_FOLDER
Ending of getting Uri List of folders
-
URI_LIST_OF_DIGITAL_OBJECT_EMPTY
public static final StorageMessage URI_LIST_OF_DIGITAL_OBJECT_EMPTY
Uri list of digital objects empty
-
-
Method Detail
-
values
public static StorageMessage[] 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 (StorageMessage c : StorageMessage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StorageMessage 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()
getter for attribute message- Returns:
- message
-
-