| Enum Constant and Description |
|---|
CREATE
Create verb for put operation.
|
GET
Get verb for list, querydata and get operations.
|
MODIFY
Modify verb for put operation.
|
REPLY
Reply verb for server's replies.
|
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ELEMENT_VERB
Tag name (element) of the "Verb" in IEC 61968-100.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumVerb |
fromString(java.lang.String text)
Returns a
EnumVerb from the given text. |
java.lang.String |
toString()
Returns the text code for the current verb.
|
static EnumVerb |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumVerb[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumVerb MODIFY
public static final EnumVerb CREATE
public static final EnumVerb GET
public static final EnumVerb REPLY
public static final java.lang.String ELEMENT_VERB
public static EnumVerb[] values()
for (EnumVerb c : EnumVerb.values()) System.out.println(c);
public static EnumVerb 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 EnumVerb fromString(java.lang.String text)
EnumVerb 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<EnumVerb>