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