public enum AmqpFrameType extends java.lang.Enum<AmqpFrameType>
| Enum Constant | Description |
|---|---|
ATTACH |
|
BEGIN |
|
CLOSE |
|
DETACH |
|
DISPOSITION |
|
END |
|
FLOW |
|
OPEN |
|
TRANSFER |
| Modifier and Type | Method | Description |
|---|---|---|
int |
value() |
|
static AmqpFrameType |
valueOf(int value) |
Returns the enum constant of this type with the specified name.
|
static AmqpFrameType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AmqpFrameType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpFrameType OPEN
public static final AmqpFrameType BEGIN
public static final AmqpFrameType ATTACH
public static final AmqpFrameType FLOW
public static final AmqpFrameType TRANSFER
public static final AmqpFrameType DISPOSITION
public static final AmqpFrameType DETACH
public static final AmqpFrameType END
public static final AmqpFrameType CLOSE
public static AmqpFrameType[] values()
for (AmqpFrameType c : AmqpFrameType.values()) System.out.println(c);
public static AmqpFrameType 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 int value()
public static AmqpFrameType valueOf(int 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.