| Enum Constant and Description |
|---|
ANY
ANY noun for get and put operations.
|
COMPRESSED
Compressed noun for binary (or xml compressed) put and get operations.
|
EMPTY
Empty response noun.
|
MESSAGE_LIST
MessageList noun for list operation.
|
QUERY_DATA
QueryData noun for query operation.
|
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ELEMENT_NOUN
Tag name (element) of the "Noun" in IEC 61968-100.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumNoun |
fromString(java.lang.String text)
Returns a
EnumNoun from the given text. |
java.lang.String |
toString()
Returns the text code for the current noun.
|
static EnumNoun |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumNoun[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumNoun ANY
public static final EnumNoun MESSAGE_LIST
public static final EnumNoun QUERY_DATA
public static final EnumNoun COMPRESSED
public static final EnumNoun EMPTY
public static final java.lang.String ELEMENT_NOUN
public static EnumNoun[] values()
for (EnumNoun c : EnumNoun.values()) System.out.println(c);
public static EnumNoun 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 EnumNoun fromString(java.lang.String text)
EnumNoun from the given text. null if the given text doesn't describes any of
the elements.text - Text to retrieve the EnumTypenull if the given text doesn't describes any of the elements.public java.lang.String toString()
toString in class java.lang.Enum<EnumNoun>