Enum Class JMSFacade.MessageClass

java.lang.Object
java.lang.Enum<JMSFacade.MessageClass>
org.frankframework.jms.JMSFacade.MessageClass
All Implemented Interfaces:
Serializable, Comparable<JMSFacade.MessageClass>, Constable
Enclosing class:
JMSFacade

public static enum JMSFacade.MessageClass extends Enum<JMSFacade.MessageClass>
The JMS Message class for the outgoing message. Currently supported are TEXT for JMS TextMessage, BYTES for JMS BytesMessage, or AUTO for auto-determination based on whether the input Message is binary or character.
  • Enum Constant Details

  • Method Details

    • values

      public static JMSFacade.MessageClass[] 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 JMSFacade.MessageClass 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