public static enum SamplePlayer.EnvelopeType extends java.lang.Enum<SamplePlayer.EnvelopeType>
FINE
) or just every frame (
COARSE
).Enum Constant and Description |
---|
COARSE
Sample the controlling envelopes every buffer.
|
FINE
Sample the controlling envelopes every frame.
|
Modifier and Type | Method and Description |
---|---|
static SamplePlayer.EnvelopeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SamplePlayer.EnvelopeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamplePlayer.EnvelopeType COARSE
public static final SamplePlayer.EnvelopeType FINE
public static SamplePlayer.EnvelopeType[] values()
for (SamplePlayer.EnvelopeType c : SamplePlayer.EnvelopeType.values()) System.out.println(c);
public static SamplePlayer.EnvelopeType 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