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