public enum AmqpMessageBodyType extends Enum<AmqpMessageBodyType>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static AmqpMessageBodyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmqpMessageBodyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpMessageBodyType DATA
public static final AmqpMessageBodyType VALUE
public static final AmqpMessageBodyType SEQUENCE
public static AmqpMessageBodyType[] values()
public static AmqpMessageBodyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Microsoft Corporation. All rights reserved.