public enum EnumMoodCode extends java.lang.Enum<EnumMoodCode>
| Enum Constant and Description |
|---|
ARQ
This constant specifies arq request Mood Code
|
EVN
This constant specifies event Mood Code
|
GOL
This constant specifies goal Mood Code
|
INT
This constant specifies intend Mood Code
|
PRMS
This constant specifies promise Mood Code
|
PRP
This constant specifies proposal Mood Code
|
RQO
This constant specifies request Mood Code
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumMoodCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumMoodCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumMoodCode INT
public static final EnumMoodCode ARQ
public static final EnumMoodCode PRMS
public static final EnumMoodCode PRP
public static final EnumMoodCode GOL
public static final EnumMoodCode RQO
public static final EnumMoodCode EVN
public static EnumMoodCode[] values()
for (EnumMoodCode c : EnumMoodCode.values()) System.out.println(c);
public static EnumMoodCode 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 getValue()