Enum DomibusConnectorConfirmationType
- java.lang.Object
-
- java.lang.Enum<DomibusConnectorConfirmationType>
-
- eu.domibus.connector.domain.transition.DomibusConnectorConfirmationType
-
- All Implemented Interfaces:
Serializable
,Comparable<DomibusConnectorConfirmationType>
public enum DomibusConnectorConfirmationType extends Enum<DomibusConnectorConfirmationType>
<p>Java class for DomibusConnectorConfirmationType. <p>The following schema fragment specifies the expected content contained within this class. <pre> <simpleType name="DomibusConnectorConfirmationType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="SUBMISSION_ACCEPTANCE"/> <enumeration value="SUBMISSION_REJECTION"/> <enumeration value="RELAY_REMMD_ACCEPTANCE"/> <enumeration value="RELAY_REMMD_REJECTION"/> <enumeration value="RELAY_REMMD_FAILURE"/> <enumeration value="DELIVERY"/> <enumeration value="NON_DELIVERY"/> <enumeration value="RETRIEVAL"/> <enumeration value="NON_RETRIEVAL"/> </restriction> </simpleType> </pre>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELIVERY
NON_DELIVERY
NON_RETRIEVAL
RELAY_REMMD_ACCEPTANCE
RELAY_REMMD_FAILURE
RELAY_REMMD_REJECTION
RETRIEVAL
SUBMISSION_ACCEPTANCE
SUBMISSION_REJECTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DomibusConnectorConfirmationType
fromValue(String v)
String
value()
static DomibusConnectorConfirmationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DomibusConnectorConfirmationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUBMISSION_ACCEPTANCE
public static final DomibusConnectorConfirmationType SUBMISSION_ACCEPTANCE
-
SUBMISSION_REJECTION
public static final DomibusConnectorConfirmationType SUBMISSION_REJECTION
-
RELAY_REMMD_ACCEPTANCE
public static final DomibusConnectorConfirmationType RELAY_REMMD_ACCEPTANCE
-
RELAY_REMMD_REJECTION
public static final DomibusConnectorConfirmationType RELAY_REMMD_REJECTION
-
RELAY_REMMD_FAILURE
public static final DomibusConnectorConfirmationType RELAY_REMMD_FAILURE
-
DELIVERY
public static final DomibusConnectorConfirmationType DELIVERY
-
NON_DELIVERY
public static final DomibusConnectorConfirmationType NON_DELIVERY
-
RETRIEVAL
public static final DomibusConnectorConfirmationType RETRIEVAL
-
NON_RETRIEVAL
public static final DomibusConnectorConfirmationType NON_RETRIEVAL
-
-
Method Detail
-
values
public static DomibusConnectorConfirmationType[] 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 (DomibusConnectorConfirmationType c : DomibusConnectorConfirmationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DomibusConnectorConfirmationType 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
-
value
public String value()
-
fromValue
public static DomibusConnectorConfirmationType fromValue(String v)
-
-