|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DAType>
org.openiec61850.common.model.datypes.DAType
public enum DAType
This Enumeration includes all possible Types for IEC 61850 leave nodes (
BasicDataAttribute
). This includes BasicTypes and CommonACSITypes as
defined in part 7-2. In the description of each Enum Constant is the Java
Class that represents the value in the respective BasicDataAttribute
.
Enum Constant Summary | |
---|---|
BOOLEAN
java.lang.Boolean |
|
CHECK
|
|
CODEDENUM
|
|
ENUMERATED
java.lang.Float |
|
FLOAT32
java.lang.Float |
|
FLOAT64
java.lang.Double |
|
GENERIC_BITSTRING
|
|
INT16
java.lang.Short |
|
INT16U
java.lang.Short |
|
INT32
java.lang.Integer |
|
INT32U
java.lang.Integer |
|
INT64
java.lang.Long |
|
INT8
java.lang.Byte |
|
INT8U
java.lang.Byte |
|
OCTET_STRING_6
|
|
OCTET_STRING_64
|
|
OCTET_STRING_8
|
|
QUALITY
|
|
TIMESTAMP
|
|
UNICODE_STRING_255
|
|
VISIBLE_STRING_129
|
|
VISIBLE_STRING_255
|
|
VISIBLE_STRING_32
|
|
VISIBLE_STRING_64
|
|
VISIBLE_STRING_65
|
Method Summary | |
---|---|
static DAType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DAType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DAType BOOLEAN
public static final DAType INT8
public static final DAType INT16
public static final DAType INT32
public static final DAType INT64
public static final DAType INT8U
public static final DAType INT16U
public static final DAType INT32U
public static final DAType FLOAT32
public static final DAType FLOAT64
public static final DAType ENUMERATED
public static final DAType OCTET_STRING_64
public static final DAType OCTET_STRING_6
public static final DAType OCTET_STRING_8
public static final DAType VISIBLE_STRING_32
public static final DAType VISIBLE_STRING_64
public static final DAType VISIBLE_STRING_65
public static final DAType VISIBLE_STRING_129
public static final DAType VISIBLE_STRING_255
public static final DAType UNICODE_STRING_255
public static final DAType TIMESTAMP
public static final DAType QUALITY
public static final DAType CHECK
public static final DAType CODEDENUM
public static final DAType GENERIC_BITSTRING
Method Detail |
---|
public static DAType[] values()
for (DAType c : DAType.values()) System.out.println(c);
public static DAType 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |