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