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