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