org.openiec61850
Enum DaType

java.lang.Object
  extended by java.lang.Enum<DaType>
      extended by org.openiec61850.DaType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DaType>

public enum DaType
extends java.lang.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.


Enum Constant Summary
BIT_STRING
           
BOOLEAN
           
ENTRY_TIME
           
FLOAT32
           
FLOAT64
           
INT16
           
INT16U
           
INT32
           
INT32U
           
INT64
           
INT8
           
INT8U
           
OCTET_STRING
           
TIMESTAMP
           
UNICODE_STRING
           
VISIBLE_STRING
           
 
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

BOOLEAN

public static final DaType BOOLEAN

INT8

public static final DaType INT8

INT16

public static final DaType INT16

INT32

public static final DaType INT32

INT64

public static final DaType INT64

INT8U

public static final DaType INT8U

INT16U

public static final DaType INT16U

INT32U

public static final DaType INT32U

FLOAT32

public static final DaType FLOAT32

FLOAT64

public static final DaType FLOAT64

OCTET_STRING

public static final DaType OCTET_STRING

VISIBLE_STRING

public static final DaType VISIBLE_STRING

UNICODE_STRING

public static final DaType UNICODE_STRING

TIMESTAMP

public static final DaType TIMESTAMP

ENTRY_TIME

public static final DaType ENTRY_TIME

BIT_STRING

public static final DaType BIT_STRING
Method Detail

values

public static DaType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DaType c : DaType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DaType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null