AmqpMessageBodyType Enum

  • java.lang.Object
    • java.lang.Enum
      • com.azure.core.amqp.models.AmqpMessageBodyType

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

Fields

DATA

Message content is byte array, equivalent to AMQP Data.

SEQUENCE

Message content is a list of objects, equivalent to AMQP Sequence.

VALUE

Message content is a single object, equivalent to AMQP Value.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

valueOf(String name)

public static AmqpMessageBodyType valueOf(String name)

Parameters

name
String

Returns

values()

public static AmqpMessageBodyType[] values()

Returns

Applies to