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