public enum AmqpBodyKind extends java.lang.Enum<AmqpBodyKind>
| Enum Constant | Description |
|---|---|
DATA |
|
SEQUENCE |
|
VALUE |
|
VALUE_BINARY32 |
|
VALUE_BINARY8 |
|
VALUE_STRING32 |
|
VALUE_STRING8 |
|
VALUE_SYMBOL32 |
|
VALUE_SYMBOL8 |
| Modifier and Type | Method | Description |
|---|---|---|
static AmqpBodyKind |
valueOf(int ordinal) |
Returns the enum constant of this type with the specified name.
|
static AmqpBodyKind |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AmqpBodyKind[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpBodyKind DATA
public static final AmqpBodyKind SEQUENCE
public static final AmqpBodyKind VALUE_STRING32
public static final AmqpBodyKind VALUE_STRING8
public static final AmqpBodyKind VALUE_BINARY32
public static final AmqpBodyKind VALUE_BINARY8
public static final AmqpBodyKind VALUE_SYMBOL32
public static final AmqpBodyKind VALUE_SYMBOL8
public static final AmqpBodyKind VALUE
public static AmqpBodyKind[] values()
for (AmqpBodyKind c : AmqpBodyKind.values()) System.out.println(c);
public static AmqpBodyKind 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 static AmqpBodyKind valueOf(int ordinal)
ordinal - 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.