public enum PassFilter extends java.lang.Enum<PassFilter>
| Enum Constant and Description |
|---|
band_pass
The band_pass.
|
high_pass
The high_pass.
|
low_pass
The low_pass.
|
no_pass_filter
The no_pass_filter.
|
| Modifier and Type | Method and Description |
|---|---|
static PassFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PassFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PassFilter low_pass
public static final PassFilter high_pass
public static final PassFilter band_pass
public static final PassFilter no_pass_filter
public static PassFilter[] values()
for (PassFilter c : PassFilter.values()) System.out.println(c);
public static PassFilter valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null