public enum EnumCM_PerformingRole extends java.lang.Enum<EnumCM_PerformingRole>
| Enum Constant and Description |
|---|
ASSISTING |
CIRCULATING_NURSE |
IRRADIATION_ADMINISTERING |
IRRADIATION_AUTHORIZING |
PERFORMING |
RECORDING |
REFERRING |
REQUESTING |
STANDBY |
VERIFYING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_PerformingRole |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_PerformingRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_PerformingRole PERFORMING
public static final EnumCM_PerformingRole REFERRING
public static final EnumCM_PerformingRole REQUESTING
public static final EnumCM_PerformingRole RECORDING
public static final EnumCM_PerformingRole VERIFYING
public static final EnumCM_PerformingRole ASSISTING
public static final EnumCM_PerformingRole CIRCULATING_NURSE
public static final EnumCM_PerformingRole STANDBY
public static final EnumCM_PerformingRole IRRADIATION_AUTHORIZING
public static final EnumCM_PerformingRole IRRADIATION_ADMINISTERING
public static EnumCM_PerformingRole[] values()
for (EnumCM_PerformingRole c : EnumCM_PerformingRole.values()) System.out.println(c);
public static EnumCM_PerformingRole 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()