Enum DomibusConnectorClientStorageFileType
- java.lang.Object
-
- java.lang.Enum<DomibusConnectorClientStorageFileType>
-
- eu.domibus.connector.client.storage.DomibusConnectorClientStorageFileType
-
- All Implemented Interfaces:
Serializable
,Comparable<DomibusConnectorClientStorageFileType>
public enum DomibusConnectorClientStorageFileType extends Enum<DomibusConnectorClientStorageFileType>
This enumeration states the different types of files that may be stored for a message in the client's storage.- Author:
- riederb
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUSINESS_ATTACHMENT
BUSINESS_CONTENT
BUSINESS_DOCUMENT
CONFIRMATION
DETACHED_SIGNATURE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DomibusConnectorClientStorageFileType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DomibusConnectorClientStorageFileType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUSINESS_CONTENT
public static final DomibusConnectorClientStorageFileType BUSINESS_CONTENT
-
BUSINESS_DOCUMENT
public static final DomibusConnectorClientStorageFileType BUSINESS_DOCUMENT
-
BUSINESS_ATTACHMENT
public static final DomibusConnectorClientStorageFileType BUSINESS_ATTACHMENT
-
DETACHED_SIGNATURE
public static final DomibusConnectorClientStorageFileType DETACHED_SIGNATURE
-
CONFIRMATION
public static final DomibusConnectorClientStorageFileType CONFIRMATION
-
-
Method Detail
-
values
public static DomibusConnectorClientStorageFileType[] 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 (DomibusConnectorClientStorageFileType c : DomibusConnectorClientStorageFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DomibusConnectorClientStorageFileType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-