public static enum IIRFilter.Type extends Enum<IIRFilter.Type>
Enum Constant and Description |
---|
BP12 |
HP12 |
HP24 |
LP12 |
LP24 |
LP6 |
NP12 |
Modifier and Type | Method and Description |
---|---|
static IIRFilter.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IIRFilter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IIRFilter.Type LP6
public static final IIRFilter.Type LP12
public static final IIRFilter.Type LP24
public static final IIRFilter.Type HP12
public static final IIRFilter.Type HP24
public static final IIRFilter.Type BP12
public static final IIRFilter.Type NP12
public static IIRFilter.Type[] values()
for (IIRFilter.Type c : IIRFilter.Type.values()) System.out.println(c);
public static IIRFilter.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null