public enum Fc extends java.lang.Enum<Fc>
Enum Constant | Description |
---|---|
BL |
Blocking
|
BR |
Buffered Reporting
|
CF |
Configuration
|
CO |
Control, deprecated but kept here for backward compatibility
|
DC |
Description
|
EX |
Extended definition
|
MX |
Measurands - analogue values
|
OR |
Operate received
|
RP |
Unbuffered Reporting
|
SE |
Setting group editable
|
SG |
Setting group
|
SP |
Setpoint
|
SR |
Service response / Service tracking
|
ST |
Status information
|
SV |
Substitution
|
Modifier and Type | Method | Description |
---|---|---|
static Fc |
fromString(java.lang.String fc) |
|
static Fc |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Fc[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Fc ST
public static final Fc MX
public static final Fc SP
public static final Fc SV
public static final Fc CF
public static final Fc DC
public static final Fc SG
public static final Fc SE
public static final Fc SR
public static final Fc OR
public static final Fc BL
public static final Fc EX
public static final Fc CO
public static final Fc RP
public static final Fc BR
public static Fc[] values()
for (Fc c : Fc.values()) System.out.println(c);
public static Fc 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 nullpublic static Fc fromString(java.lang.String fc)