Package de.gsi.math.spectra
Enum TSpectrum.SmoothWindow
- java.lang.Object
-
- java.lang.Enum<TSpectrum.SmoothWindow>
-
- de.gsi.math.spectra.TSpectrum.SmoothWindow
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TSpectrum.SmoothWindow>
- Enclosing class:
- TSpectrum
public static enum TSpectrum.SmoothWindow extends java.lang.Enum<TSpectrum.SmoothWindow>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_SMOOTHINGSMOOTHING_WIDTH11SMOOTHING_WIDTH13SMOOTHING_WIDTH15SMOOTHING_WIDTH3SMOOTHING_WIDTH5SMOOTHING_WIDTH7SMOOTHING_WIDTH9
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()booleanisSmoothing()static TSpectrum.SmoothWindowvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TSpectrum.SmoothWindow[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_SMOOTHING
public static final TSpectrum.SmoothWindow NO_SMOOTHING
-
SMOOTHING_WIDTH3
public static final TSpectrum.SmoothWindow SMOOTHING_WIDTH3
-
SMOOTHING_WIDTH5
public static final TSpectrum.SmoothWindow SMOOTHING_WIDTH5
-
SMOOTHING_WIDTH7
public static final TSpectrum.SmoothWindow SMOOTHING_WIDTH7
-
SMOOTHING_WIDTH9
public static final TSpectrum.SmoothWindow SMOOTHING_WIDTH9
-
SMOOTHING_WIDTH11
public static final TSpectrum.SmoothWindow SMOOTHING_WIDTH11
-
SMOOTHING_WIDTH13
public static final TSpectrum.SmoothWindow SMOOTHING_WIDTH13
-
SMOOTHING_WIDTH15
public static final TSpectrum.SmoothWindow SMOOTHING_WIDTH15
-
-
Method Detail
-
values
public static TSpectrum.SmoothWindow[] 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 (TSpectrum.SmoothWindow c : TSpectrum.SmoothWindow.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TSpectrum.SmoothWindow 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
-
getValue
public int getValue()
-
isSmoothing
public boolean isSmoothing()
-
-