Package de.gsi.math.spectra
Enum TSpectrum.FilterOrder
- java.lang.Object
-
- java.lang.Enum<TSpectrum.FilterOrder>
-
- de.gsi.math.spectra.TSpectrum.FilterOrder
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TSpectrum.FilterOrder>
- Enclosing class:
- TSpectrum
public static enum TSpectrum.FilterOrder extends java.lang.Enum<TSpectrum.FilterOrder>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TSpectrum.FilterOrdervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TSpectrum.FilterOrder[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORDER_2
public static final TSpectrum.FilterOrder ORDER_2
-
ORDER_4
public static final TSpectrum.FilterOrder ORDER_4
-
ORDER_6
public static final TSpectrum.FilterOrder ORDER_6
-
ORDER_8
public static final TSpectrum.FilterOrder ORDER_8
-
-
Method Detail
-
values
public static TSpectrum.FilterOrder[] 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.FilterOrder c : TSpectrum.FilterOrder.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.FilterOrder 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
-
-