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