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