public static enum VstConstants.FilterMode extends java.lang.Enum<VstConstants.FilterMode>
| Enum Constant and Description |
|---|
BAND_PASS
The band pass.
|
HIGH_PASS
The high pass.
|
LOW_PASS
The low pass.
|
MID_PASS
The mid pass.
|
| Modifier and Type | Method and Description |
|---|---|
static VstConstants.FilterMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VstConstants.FilterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VstConstants.FilterMode LOW_PASS
public static final VstConstants.FilterMode MID_PASS
public static final VstConstants.FilterMode HIGH_PASS
public static final VstConstants.FilterMode BAND_PASS
public static VstConstants.FilterMode[] values()
for (VstConstants.FilterMode c : VstConstants.FilterMode.values()) System.out.println(c);
public static VstConstants.FilterMode 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