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