Enum AmqpMessageBodyType

java.lang.Object
java.lang.Enum<AmqpMessageBodyType>
com.azure.core.amqp.models.AmqpMessageBodyType
All Implemented Interfaces:
Serializable, Comparable<AmqpMessageBodyType>, java.lang.constant.Constable

public enum AmqpMessageBodyType extends Enum<AmqpMessageBodyType>
Represents all valid AmqpMessageBodyType for an AMQP Message. Current SDK only support DATA AMQP data type. Track this issue to find out support for other AMQP types.

Types of Amqp message body

  • Enum Constant Details

    • DATA

      public static final AmqpMessageBodyType DATA
      Message content is byte array, equivalent to AMQP Data.
    • VALUE

      public static final AmqpMessageBodyType VALUE
      Message content is a single object, equivalent to AMQP Value. The object must be of a type supported by AMQP.
    • SEQUENCE

      public static final AmqpMessageBodyType SEQUENCE
      Message content is a list of objects, equivalent to AMQP Sequence. Each object must be of a type supported by AMQP.
  • Method Details

    • values

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

      public static AmqpMessageBodyType 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 name
      NullPointerException - if the argument is null