Enum DomibusConnectorClientMessageFileType
- java.lang.Object
-
- java.lang.Enum<DomibusConnectorClientMessageFileType>
-
- eu.domibus.connector.client.rest.model.DomibusConnectorClientMessageFileType
-
- All Implemented Interfaces:
Serializable
,Comparable<DomibusConnectorClientMessageFileType>
public enum DomibusConnectorClientMessageFileType extends Enum<DomibusConnectorClientMessageFileType>
This enumeration states the different types of files for a message.- 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 DomibusConnectorClientMessageFileType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DomibusConnectorClientMessageFileType[]
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 DomibusConnectorClientMessageFileType BUSINESS_CONTENT
-
BUSINESS_DOCUMENT
public static final DomibusConnectorClientMessageFileType BUSINESS_DOCUMENT
-
BUSINESS_ATTACHMENT
public static final DomibusConnectorClientMessageFileType BUSINESS_ATTACHMENT
-
DETACHED_SIGNATURE
public static final DomibusConnectorClientMessageFileType DETACHED_SIGNATURE
-
CONFIRMATION
public static final DomibusConnectorClientMessageFileType CONFIRMATION
-
-
Method Detail
-
values
public static DomibusConnectorClientMessageFileType[] 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 (DomibusConnectorClientMessageFileType c : DomibusConnectorClientMessageFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DomibusConnectorClientMessageFileType 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
-
-