public enum EnumCM_StaffActions extends java.lang.Enum<EnumCM_StaffActions>
| Enum Constant and Description |
|---|
CONSULTATION_WITH |
OFFICE_CALLED |
PAGE_SENT_TO |
PERSONNEL_ARRIVED |
PERSONNEL_DEPARTED |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_StaffActions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_StaffActions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_StaffActions PERSONNEL_ARRIVED
public static final EnumCM_StaffActions PERSONNEL_DEPARTED
public static final EnumCM_StaffActions PAGE_SENT_TO
public static final EnumCM_StaffActions CONSULTATION_WITH
public static final EnumCM_StaffActions OFFICE_CALLED
public static EnumCM_StaffActions[] values()
for (EnumCM_StaffActions c : EnumCM_StaffActions.values()) System.out.println(c);
public static EnumCM_StaffActions 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()