Package org.apache.camel
Enum ExchangePattern
- java.lang.Object
-
- java.lang.Enum<ExchangePattern>
-
- org.apache.camel.ExchangePattern
-
- All Implemented Interfaces:
Serializable
,Comparable<ExchangePattern>
public enum ExchangePattern extends Enum<ExchangePattern>
Represents the kind of message exchange pattern
-
-
Enum Constant Summary
Enum Constants Enum Constant Description InOnly
InOptionalOut
InOut
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExchangePattern
asEnum(String value)
boolean
isInCapable()
Return true if there can be an IN messageboolean
isOutCapable()
Return true if there can be an OUT messagestatic ExchangePattern
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExchangePattern[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
InOnly
public static final ExchangePattern InOnly
-
InOut
public static final ExchangePattern InOut
-
InOptionalOut
public static final ExchangePattern InOptionalOut
-
-
Method Detail
-
values
public static ExchangePattern[] 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 (ExchangePattern c : ExchangePattern.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExchangePattern 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
-
isInCapable
public boolean isInCapable()
Return true if there can be an IN message
-
isOutCapable
public boolean isOutCapable()
Return true if there can be an OUT message
-
asEnum
public static ExchangePattern asEnum(String value)
-
-