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