peakml.math.filter
Enum SavitzkyGolayFilter.Points

java.lang.Object
  extended by java.lang.Enum<SavitzkyGolayFilter.Points>
      extended by peakml.math.filter.SavitzkyGolayFilter.Points
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SavitzkyGolayFilter.Points>
Enclosing class:
SavitzkyGolayFilter

public static enum SavitzkyGolayFilter.Points
extends java.lang.Enum<SavitzkyGolayFilter.Points>

Fixed definition of the number of data points to use for smoothing. The range is restricted because the algorithm utilizes pre-calculated coefficients.


Enum Constant Summary
ELEVEN
           
FIFTEEN
           
FIVE
           
NINE
           
NINETEEN
           
SEVEN
           
SEVENTEEN
           
THIRTEEN
           
TWENTYFIVE
           
TWENTYONE
           
TWENTYTHREE
           
 
Method Summary
static SavitzkyGolayFilter.Points valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SavitzkyGolayFilter.Points[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FIVE

public static final SavitzkyGolayFilter.Points FIVE

SEVEN

public static final SavitzkyGolayFilter.Points SEVEN

NINE

public static final SavitzkyGolayFilter.Points NINE

ELEVEN

public static final SavitzkyGolayFilter.Points ELEVEN

THIRTEEN

public static final SavitzkyGolayFilter.Points THIRTEEN

FIFTEEN

public static final SavitzkyGolayFilter.Points FIFTEEN

SEVENTEEN

public static final SavitzkyGolayFilter.Points SEVENTEEN

NINETEEN

public static final SavitzkyGolayFilter.Points NINETEEN

TWENTYONE

public static final SavitzkyGolayFilter.Points TWENTYONE

TWENTYTHREE

public static final SavitzkyGolayFilter.Points TWENTYTHREE

TWENTYFIVE

public static final SavitzkyGolayFilter.Points TWENTYFIVE
Method Detail

values

public static SavitzkyGolayFilter.Points[] 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 (SavitzkyGolayFilter.Points c : SavitzkyGolayFilter.Points.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SavitzkyGolayFilter.Points 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 name
java.lang.NullPointerException - if the argument is null