public enum StandardMessageURN extends java.lang.Enum<StandardMessageURN>
Enum Constant and Description |
---|
AK_CLEAR
Clear command.
|
AK_CLEAR_AREA
Clear-Area command.
|
AK_EXTINGUISH
Extinguish command.
|
AK_LOAD
Load command.
|
AK_MOVE
Move command.
|
AK_RESCUE
Rescue command.
|
AK_REST
Rest command.
|
AK_SAY
Say command.
|
AK_SPEAK
Channel speak command.
|
AK_SUBSCRIBE
Channel subscribe command.
|
AK_TELL
Tell command.
|
AK_UNLOAD
Unload command.
|
Modifier and Type | Method and Description |
---|---|
static StandardMessageURN |
fromString(java.lang.String s)
Convert a String to a StandardMessageURN.
|
java.lang.String |
toString() |
static StandardMessageURN |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardMessageURN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardMessageURN AK_REST
public static final StandardMessageURN AK_MOVE
public static final StandardMessageURN AK_LOAD
public static final StandardMessageURN AK_UNLOAD
public static final StandardMessageURN AK_SAY
public static final StandardMessageURN AK_TELL
public static final StandardMessageURN AK_EXTINGUISH
public static final StandardMessageURN AK_RESCUE
public static final StandardMessageURN AK_CLEAR
public static final StandardMessageURN AK_CLEAR_AREA
public static final StandardMessageURN AK_SUBSCRIBE
public static final StandardMessageURN AK_SPEAK
public static StandardMessageURN[] values()
for (StandardMessageURN c : StandardMessageURN.values()) System.out.println(c);
public static StandardMessageURN 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 java.lang.String toString()
toString
in class java.lang.Enum<StandardMessageURN>
public static StandardMessageURN fromString(java.lang.String s)
s
- The String to convert.