org.openiec61850.common.model
Enum FunctionalConstraint

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

public enum FunctionalConstraint
extends java.lang.Enum<FunctionalConstraint>


Enum Constant Summary
BL
          Blocking
CF
          Configuration
CO
          Control, deprecated but kept here for backward compatibility
DC
          Description
EX
          Extended definition
MX
          Measurands - analogue values
OR
          Operate received
SE
          Setting group editable
SG
          Setting group
SP
          Setpoint
SR
          Service response / Service tracking
ST
          Status information
SV
          Substitution
 
Method Summary
static FunctionalConstraint fromString(java.lang.String fc)
           
static FunctionalConstraint valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FunctionalConstraint[] 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

ST

public static final FunctionalConstraint ST
Status information


MX

public static final FunctionalConstraint MX
Measurands - analogue values


SP

public static final FunctionalConstraint SP
Setpoint


SV

public static final FunctionalConstraint SV
Substitution


CF

public static final FunctionalConstraint CF
Configuration


DC

public static final FunctionalConstraint DC
Description


SG

public static final FunctionalConstraint SG
Setting group


SE

public static final FunctionalConstraint SE
Setting group editable


SR

public static final FunctionalConstraint SR
Service response / Service tracking


OR

public static final FunctionalConstraint OR
Operate received


BL

public static final FunctionalConstraint BL
Blocking


EX

public static final FunctionalConstraint EX
Extended definition


CO

public static final FunctionalConstraint CO
Control, deprecated but kept here for backward compatibility

Method Detail

values

public static FunctionalConstraint[] 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 (FunctionalConstraint c : FunctionalConstraint.values())
    System.out.println(c);

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

valueOf

public static FunctionalConstraint 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

fromString

public static FunctionalConstraint fromString(java.lang.String fc)