net.beadsproject.beads.ugens
Enum BiquadFilter.Type

java.lang.Object
  extended by java.lang.Enum<BiquadFilter.Type>
      extended by net.beadsproject.beads.ugens.BiquadFilter.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BiquadFilter.Type>
Enclosing class:
BiquadFilter

public static enum BiquadFilter.Type
extends java.lang.Enum<BiquadFilter.Type>


Enum Constant Summary
AP
           
BESSEL_HP
           
BESSEL_LP
           
BP_PEAK
           
BP_SKIRT
           
BUTTERWORTH_HP
           
BUTTERWORTH_LP
           
CUSTOM_FILTER
           
HIGH_SHELF
           
HP
           
LOW_SHELF
           
LP
           
NOTCH
           
PEAKING_EQ
           
 
Method Summary
static BiquadFilter.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BiquadFilter.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LP

public static final BiquadFilter.Type LP

HP

public static final BiquadFilter.Type HP

BP_PEAK

public static final BiquadFilter.Type BP_PEAK

BP_SKIRT

public static final BiquadFilter.Type BP_SKIRT

NOTCH

public static final BiquadFilter.Type NOTCH

AP

public static final BiquadFilter.Type AP

PEAKING_EQ

public static final BiquadFilter.Type PEAKING_EQ

LOW_SHELF

public static final BiquadFilter.Type LOW_SHELF

HIGH_SHELF

public static final BiquadFilter.Type HIGH_SHELF

BUTTERWORTH_LP

public static final BiquadFilter.Type BUTTERWORTH_LP

BUTTERWORTH_HP

public static final BiquadFilter.Type BUTTERWORTH_HP

BESSEL_LP

public static final BiquadFilter.Type BESSEL_LP

BESSEL_HP

public static final BiquadFilter.Type BESSEL_HP

CUSTOM_FILTER

public static final BiquadFilter.Type CUSTOM_FILTER
Method Detail

values

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

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

valueOf

public static BiquadFilter.Type 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