Enum Class ExchangePattern

java.lang.Object
java.lang.Enum<ExchangePattern>
org.apache.camel.ExchangePattern
All Implemented Interfaces:
Serializable, Comparable<ExchangePattern>, Constable

public enum ExchangePattern extends Enum<ExchangePattern>
Represents the kind of message exchange pattern
  • Enum Constant Details

  • Method Details

    • values

      public static ExchangePattern[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ExchangePattern valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - 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)