public enum FilterPassType extends Enum<FilterPassType>
| Enum Constant and Description |
|---|
bandpass |
bandstop |
highpass |
lowpass |
| Modifier and Type | Method and Description |
|---|---|
static FilterPassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterPassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterPassType lowpass
public static final FilterPassType highpass
public static final FilterPassType bandpass
public static final FilterPassType bandstop
public static FilterPassType[] values()
for (FilterPassType c : FilterPassType.values()) System.out.println(c);
public static FilterPassType 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