org.openiec61850.common
Enum ACSIClass
java.lang.Object
java.lang.Enum<ACSIClass>
org.openiec61850.common.ACSIClass
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ACSIClass>
public enum ACSIClass
- extends java.lang.Enum<ACSIClass>
This Class is used by the ACSI Service getLogicalNode(Reference, ACSIClass)
Method Summary |
static ACSIClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ACSIClass[] |
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 |
DATA_OBJECT
public static final ACSIClass DATA_OBJECT
DATA_SET
public static final ACSIClass DATA_SET
BRCB
public static final ACSIClass BRCB
URCB
public static final ACSIClass URCB
LCB
public static final ACSIClass LCB
LOG
public static final ACSIClass LOG
SGCB
public static final ACSIClass SGCB
GoCB
public static final ACSIClass GoCB
GsCB
public static final ACSIClass GsCB
MSVCB
public static final ACSIClass MSVCB
USVCB
public static final ACSIClass USVCB
values
public static ACSIClass[] 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 (ACSIClass c : ACSIClass.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ACSIClass 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