Package de.gsi.math.spectra.wavelet
Enum WaveletCoefficients.MODE
- java.lang.Object
-
- java.lang.Enum<WaveletCoefficients.MODE>
-
- de.gsi.math.spectra.wavelet.WaveletCoefficients.MODE
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WaveletCoefficients.MODE>
- Enclosing class:
- WaveletCoefficients
public static enum WaveletCoefficients.MODE extends java.lang.Enum<WaveletCoefficients.MODE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MODE_ASYMMETRICMODE_CONSTANT_EDGEMODE_INVALIDMODE_MAXMODE_PERIODICMODE_PERIODIZATIONMODE_SMOOTHMODE_SYMMETRICMODE_ZEROPAD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WaveletCoefficients.MODEvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WaveletCoefficients.MODE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MODE_INVALID
public static final WaveletCoefficients.MODE MODE_INVALID
-
MODE_ZEROPAD
public static final WaveletCoefficients.MODE MODE_ZEROPAD
-
MODE_SYMMETRIC
public static final WaveletCoefficients.MODE MODE_SYMMETRIC
-
MODE_ASYMMETRIC
public static final WaveletCoefficients.MODE MODE_ASYMMETRIC
-
MODE_CONSTANT_EDGE
public static final WaveletCoefficients.MODE MODE_CONSTANT_EDGE
-
MODE_SMOOTH
public static final WaveletCoefficients.MODE MODE_SMOOTH
-
MODE_PERIODIC
public static final WaveletCoefficients.MODE MODE_PERIODIC
-
MODE_PERIODIZATION
public static final WaveletCoefficients.MODE MODE_PERIODIZATION
-
MODE_MAX
public static final WaveletCoefficients.MODE MODE_MAX
-
-
Method Detail
-
values
public static WaveletCoefficients.MODE[] 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 (WaveletCoefficients.MODE c : WaveletCoefficients.MODE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WaveletCoefficients.MODE 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
-
-