Package net.paulhertz.pixelaudio.sampler
Enum Class PitchPolicy
- All Implemented Interfaces:
Serializable,Comparable<PitchPolicy>,Constable
PitchPolicy
Determines how PASamplerInstrument / PASamplerVoice should interpret
their pitch parameter in combination with a given PASource.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBoth instrument and source contribute to pitch/time.Instrument pitch maps to playback rate (classic sample playback).Source (e.g., granular engine) controls time/pitch. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic PitchPolicyReturns the enum constant of this class with the specified name.static PitchPolicy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTRUMENT_RATE
Instrument pitch maps to playback rate (classic sample playback). Source is considered time-neutral. -
SOURCE_GRANULAR
Source (e.g., granular engine) controls time/pitch. Instrument pitch should be ignored for this source. -
COMBINED
Both instrument and source contribute to pitch/time. Advanced / experimental; can create complex artifacts.
-
-
Constructor Details
-
PitchPolicy
private PitchPolicy()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-