public enum ReferencingMethod extends java.lang.Enum<ReferencingMethod>
See OpenMUC - DLMS-COSEM user guide for further information.
Enum Constant and Description |
---|
LOGICAL
Use the logical name (LN) referencing method.
|
SHORT
Use the short name referencing (SN) method.
|
Modifier and Type | Method and Description |
---|---|
static ReferencingMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReferencingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReferencingMethod LOGICAL
public static final ReferencingMethod SHORT
public static ReferencingMethod[] values()
for (ReferencingMethod c : ReferencingMethod.values()) System.out.println(c);
public static ReferencingMethod 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 null