public enum BdaType extends java.lang.Enum<BdaType>
BasicDataAttribute
). This includes BasicTypes and CommonACSITypes as defined in part 7-2.Enum Constant | Description |
---|---|
BOOLEAN |
|
CHECK |
|
DOUBLE_BIT_POS |
|
ENTRY_TIME |
|
FLOAT32 |
|
FLOAT64 |
|
INT128 |
|
INT16 |
|
INT16U |
|
INT32 |
|
INT32U |
|
INT64 |
|
INT8 |
|
INT8U |
|
OCTET_STRING |
|
OPTFLDS |
|
QUALITY |
|
REASON_FOR_INCLUSION |
|
TAP_COMMAND |
|
TIMESTAMP |
|
TRIGGER_CONDITIONS |
|
UNICODE_STRING |
|
VISIBLE_STRING |
Modifier and Type | Method | Description |
---|---|---|
static BdaType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static BdaType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BdaType BOOLEAN
public static final BdaType INT8
public static final BdaType INT16
public static final BdaType INT32
public static final BdaType INT64
public static final BdaType INT128
public static final BdaType INT8U
public static final BdaType INT16U
public static final BdaType INT32U
public static final BdaType FLOAT32
public static final BdaType FLOAT64
public static final BdaType OCTET_STRING
public static final BdaType VISIBLE_STRING
public static final BdaType UNICODE_STRING
public static final BdaType TIMESTAMP
public static final BdaType ENTRY_TIME
public static final BdaType CHECK
public static final BdaType QUALITY
public static final BdaType DOUBLE_BIT_POS
public static final BdaType TAP_COMMAND
public static final BdaType TRIGGER_CONDITIONS
public static final BdaType OPTFLDS
public static final BdaType REASON_FOR_INCLUSION
public static BdaType[] values()
for (BdaType c : BdaType.values()) System.out.println(c);
public static BdaType 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 null