Enum SimpleMeasurements.MeasurementType
- java.lang.Object
-
- java.lang.Enum<SimpleMeasurements.MeasurementType>
-
- de.gsi.chart.plugins.measurements.SimpleMeasurements.MeasurementType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SimpleMeasurements.MeasurementType>
- Enclosing class:
- SimpleMeasurements
public static enum SimpleMeasurements.MeasurementType extends java.lang.Enum<SimpleMeasurements.MeasurementType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISTANCE_HORDISTANCE_VERDUTY_CYCLEEDGE_DETECTFREQUENCYFWHMFWHM_INTERPOLATEDINTEGRALINTEGRAL_FULLLOCATION_MAXIMUMLOCATION_MAXIMUM_GAUSSMARKER_DISTANCE_HORMARKER_DISTANCE_VERMARKER_HORMARKER_VERMAXIMUMMEANMEDIANMINIMUMPERIODRANGERISETIME_10_90RISETIME_20_80RMSTRANSMISSION_ABSTRANSMISSION_RELVALUE_HORhorizontal value at indicatorVALUE_VERvertical value at indicator
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SimpleMeasurements.MeasurementCategorygetCategory()java.lang.StringgetName()intgetRequiredDataSets()intgetRequiredSelectors()booleanisVerticalMeasurement()java.lang.StringtoString()static SimpleMeasurements.MeasurementTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SimpleMeasurements.MeasurementType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MARKER_HOR
public static final SimpleMeasurements.MeasurementType MARKER_HOR
-
MARKER_DISTANCE_HOR
public static final SimpleMeasurements.MeasurementType MARKER_DISTANCE_HOR
-
MARKER_VER
public static final SimpleMeasurements.MeasurementType MARKER_VER
-
MARKER_DISTANCE_VER
public static final SimpleMeasurements.MeasurementType MARKER_DISTANCE_VER
-
VALUE_HOR
public static final SimpleMeasurements.MeasurementType VALUE_HOR
horizontal value at indicator
-
DISTANCE_HOR
public static final SimpleMeasurements.MeasurementType DISTANCE_HOR
-
VALUE_VER
public static final SimpleMeasurements.MeasurementType VALUE_VER
vertical value at indicator
-
DISTANCE_VER
public static final SimpleMeasurements.MeasurementType DISTANCE_VER
-
MINIMUM
public static final SimpleMeasurements.MeasurementType MINIMUM
-
MAXIMUM
public static final SimpleMeasurements.MeasurementType MAXIMUM
-
RANGE
public static final SimpleMeasurements.MeasurementType RANGE
-
MEAN
public static final SimpleMeasurements.MeasurementType MEAN
-
RMS
public static final SimpleMeasurements.MeasurementType RMS
-
MEDIAN
public static final SimpleMeasurements.MeasurementType MEDIAN
-
INTEGRAL
public static final SimpleMeasurements.MeasurementType INTEGRAL
-
INTEGRAL_FULL
public static final SimpleMeasurements.MeasurementType INTEGRAL_FULL
-
TRANSMISSION_ABS
public static final SimpleMeasurements.MeasurementType TRANSMISSION_ABS
-
TRANSMISSION_REL
public static final SimpleMeasurements.MeasurementType TRANSMISSION_REL
-
EDGE_DETECT
public static final SimpleMeasurements.MeasurementType EDGE_DETECT
-
RISETIME_10_90
public static final SimpleMeasurements.MeasurementType RISETIME_10_90
-
RISETIME_20_80
public static final SimpleMeasurements.MeasurementType RISETIME_20_80
-
FWHM
public static final SimpleMeasurements.MeasurementType FWHM
-
FWHM_INTERPOLATED
public static final SimpleMeasurements.MeasurementType FWHM_INTERPOLATED
-
LOCATION_MAXIMUM
public static final SimpleMeasurements.MeasurementType LOCATION_MAXIMUM
-
LOCATION_MAXIMUM_GAUSS
public static final SimpleMeasurements.MeasurementType LOCATION_MAXIMUM_GAUSS
-
DUTY_CYCLE
public static final SimpleMeasurements.MeasurementType DUTY_CYCLE
-
PERIOD
public static final SimpleMeasurements.MeasurementType PERIOD
-
FREQUENCY
public static final SimpleMeasurements.MeasurementType FREQUENCY
-
-
Method Detail
-
values
public static SimpleMeasurements.MeasurementType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SimpleMeasurements.MeasurementType c : SimpleMeasurements.MeasurementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimpleMeasurements.MeasurementType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getCategory
public SimpleMeasurements.MeasurementCategory getCategory()
-
isVerticalMeasurement
public boolean isVerticalMeasurement()
-
getName
public java.lang.String getName()
-
getRequiredDataSets
public int getRequiredDataSets()
-
getRequiredSelectors
public int getRequiredSelectors()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<SimpleMeasurements.MeasurementType>
-
-