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