public enum AmqpBodyType extends Enum<AmqpBodyType>
| Enum Constant and Description |
|---|
DATA
Represent Amqp Data type
|
SEQUENCE
Represent Amqp Sequence type
|
VALUE
Represent Amqp Value type
|
| Modifier and Type | Method and Description |
|---|---|
static AmqpBodyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmqpBodyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpBodyType DATA
public static final AmqpBodyType VALUE
public static final AmqpBodyType SEQUENCE
public static AmqpBodyType[] values()
public static AmqpBodyType 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 © 2020 Microsoft Corporation. All rights reserved.