Enum FitDataSetManager.DS
- java.lang.Object
-
- java.lang.Enum<FitDataSetManager.DS>
-
- cern.accsoft.steering.aloha.gui.panels.fit.FitDataSetManager.DS
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FitDataSetManager.DS>
- Enclosing class:
- FitDataSetManager
public static enum FitDataSetManager.DS extends java.lang.Enum<FitDataSetManager.DS>
This is the enum for all available 2D - DataSets
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CORRECTOR_GAINSDELTA_PARAMETER_VALUESDIFFERENCE_VECTORMONITOR_GAINSVARIATION_PARAMETER_CHANGESVARIATION_PARAMETER_INITIAL_VALUESVARIATION_PARAMETER_RELATIVE_CHANGESVARIATION_PARAMETER_VALUES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FitDataSetManager.DSvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FitDataSetManager.DS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIFFERENCE_VECTOR
public static final FitDataSetManager.DS DIFFERENCE_VECTOR
-
DELTA_PARAMETER_VALUES
public static final FitDataSetManager.DS DELTA_PARAMETER_VALUES
-
CORRECTOR_GAINS
public static final FitDataSetManager.DS CORRECTOR_GAINS
-
MONITOR_GAINS
public static final FitDataSetManager.DS MONITOR_GAINS
-
VARIATION_PARAMETER_VALUES
public static final FitDataSetManager.DS VARIATION_PARAMETER_VALUES
-
VARIATION_PARAMETER_INITIAL_VALUES
public static final FitDataSetManager.DS VARIATION_PARAMETER_INITIAL_VALUES
-
VARIATION_PARAMETER_CHANGES
public static final FitDataSetManager.DS VARIATION_PARAMETER_CHANGES
-
VARIATION_PARAMETER_RELATIVE_CHANGES
public static final FitDataSetManager.DS VARIATION_PARAMETER_RELATIVE_CHANGES
-
-
Method Detail
-
values
public static FitDataSetManager.DS[] 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 (FitDataSetManager.DS c : FitDataSetManager.DS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FitDataSetManager.DS 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
-
-