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