Enum AS2DispositionType
- java.lang.Object
-
- java.lang.Enum<AS2DispositionType>
-
- org.apache.camel.component.as2.api.entity.AS2DispositionType
-
- All Implemented Interfaces:
Serializable
,Comparable<AS2DispositionType>
public enum AS2DispositionType extends Enum<AS2DispositionType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getType()
static AS2DispositionType
parseDispositionType(String dispositionTypeString)
String
toString()
static AS2DispositionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AS2DispositionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESSED
public static final AS2DispositionType PROCESSED
-
FAILED
public static final AS2DispositionType FAILED
-
-
Method Detail
-
values
public static AS2DispositionType[] 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 (AS2DispositionType c : AS2DispositionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AS2DispositionType 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
-
getType
public String getType()
-
toString
public String toString()
- Overrides:
toString
in classEnum<AS2DispositionType>
-
parseDispositionType
public static AS2DispositionType parseDispositionType(String dispositionTypeString)
-
-