public enum AmqpSectionType extends java.lang.Enum<AmqpSectionType>
| Enum Constant | Description |
|---|---|
APPLICATION_PROPERTIES |
|
DATA |
|
DELIVERY_ANNOTATIONS |
|
FOOTER |
|
HEADER |
|
MESSAGE_ANNOTATIONS |
|
PROPERTIES |
|
SEQUENCE |
|
VALUE |
| Modifier and Type | Method | Description |
|---|---|---|
long |
value() |
|
static AmqpSectionType |
valueOf(long value) |
Returns the enum constant of this type with the specified name.
|
static AmqpSectionType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AmqpSectionType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpSectionType HEADER
public static final AmqpSectionType DELIVERY_ANNOTATIONS
public static final AmqpSectionType MESSAGE_ANNOTATIONS
public static final AmqpSectionType PROPERTIES
public static final AmqpSectionType APPLICATION_PROPERTIES
public static final AmqpSectionType DATA
public static final AmqpSectionType SEQUENCE
public static final AmqpSectionType VALUE
public static final AmqpSectionType FOOTER
public static AmqpSectionType[] values()
for (AmqpSectionType c : AmqpSectionType.values()) System.out.println(c);
public static AmqpSectionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic long value()
public static AmqpSectionType valueOf(long value)
value - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2020. All rights reserved.