public enum Nature extends java.lang.Enum<Nature>
Implementation note: We keep this class in the common package instead of model package because
OwningWg
depends on it.
Enum Constant and Description |
---|
CIM
Pure CIM domain.
|
IEC61850
Pure IEC 61850 domain.
|
Modifier and Type | Method and Description |
---|---|
static Nature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Nature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Nature CIM
public static final Nature IEC61850
public static Nature[] values()
for (Nature c : Nature.values()) System.out.println(c);
public static Nature 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 nullCopyright 2009-2015 Tatjana (Tanja) Kostic