public enum AmqpType extends java.lang.Enum<AmqpType>
| Enum Constant | Description |
|---|---|
ARRAY1 |
|
ARRAY4 |
|
BINARY1 |
|
BINARY4 |
|
BOOLEAN |
|
BYTE |
|
CHAR |
|
DECIMAL128 |
|
DECIMAL32 |
|
DECIMAL64 |
|
DESCRIBED |
|
DOUBLE |
|
FALSE |
|
FLOAT |
|
INT1 |
|
INT4 |
|
LIST0 |
|
LIST1 |
|
LIST4 |
|
LONG1 |
|
LONG8 |
|
MAP1 |
|
MAP4 |
|
NULL |
|
SHORT |
|
STRING1 |
|
STRING4 |
|
SYMBOL1 |
|
SYMBOL4 |
|
TIMESTAMP |
|
TRUE |
|
UBYTE |
|
UINT0 |
|
UINT1 |
|
UINT4 |
|
ULONG0 |
|
ULONG1 |
|
ULONG8 |
|
USHORT |
|
UUID |
| Modifier and Type | Method | Description |
|---|---|---|
int |
value() |
|
static AmqpType |
valueOf(int value) |
Returns the enum constant of this type with the specified name.
|
static AmqpType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AmqpType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpType DESCRIBED
public static final AmqpType NULL
public static final AmqpType BOOLEAN
public static final AmqpType TRUE
public static final AmqpType FALSE
public static final AmqpType UBYTE
public static final AmqpType USHORT
public static final AmqpType UINT4
public static final AmqpType UINT1
public static final AmqpType UINT0
public static final AmqpType ULONG8
public static final AmqpType ULONG1
public static final AmqpType ULONG0
public static final AmqpType BYTE
public static final AmqpType SHORT
public static final AmqpType INT4
public static final AmqpType INT1
public static final AmqpType LONG8
public static final AmqpType LONG1
public static final AmqpType FLOAT
public static final AmqpType DOUBLE
public static final AmqpType DECIMAL32
public static final AmqpType DECIMAL64
public static final AmqpType DECIMAL128
public static final AmqpType CHAR
public static final AmqpType TIMESTAMP
public static final AmqpType UUID
public static final AmqpType BINARY1
public static final AmqpType BINARY4
public static final AmqpType STRING1
public static final AmqpType STRING4
public static final AmqpType SYMBOL1
public static final AmqpType SYMBOL4
public static final AmqpType LIST0
public static final AmqpType LIST1
public static final AmqpType LIST4
public static final AmqpType MAP1
public static final AmqpType MAP4
public static final AmqpType ARRAY1
public static final AmqpType ARRAY4
public static AmqpType[] values()
for (AmqpType c : AmqpType.values()) System.out.println(c);
public static AmqpType 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 AmqpType 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.