public static enum PDU.DataType extends java.lang.Enum<PDU.DataType>
| Enum Constant and Description |
|---|
bit |
Double |
Float |
i16 |
i32 |
i64 |
i8 |
String |
u16 |
u32 |
u8 |
| Modifier and Type | Method and Description |
|---|---|
static PDU.DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PDU.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDU.DataType bit
public static final PDU.DataType u8
public static final PDU.DataType i8
public static final PDU.DataType u16
public static final PDU.DataType i16
public static final PDU.DataType u32
public static final PDU.DataType i32
public static final PDU.DataType i64
public static final PDU.DataType Double
public static final PDU.DataType Float
public static final PDU.DataType String
public static PDU.DataType[] values()
for (PDU.DataType c : PDU.DataType.values()) System.out.println(c);
public static PDU.DataType 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 nullaQute SARL All Rights Reserved