Enum Class MidiInterpretation2.Method
java.lang.Object
java.lang.Enum<MidiInterpretation2.Method>
eu.bandm.music.applications.feldproj.MidiInterpretation2.Method
- All Implemented Interfaces:
Serializable
,Comparable<MidiInterpretation2.Method>
,Constable
- Enclosing class:
- MidiInterpretation2
The possible methods for pitch selection
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionGlobal minimization of PC reuse, with complete control.Every single event chooses its pitches freely from the global PC-set.Every player minimizes PC reuse, and reacts on the PCs played by the others in simultaneous events.Every instrument/voice maximizes independently the distance between PC reuse. -
Method Summary
Modifier and TypeMethodDescriptionstatic MidiInterpretation2.Method
Returns the enum constant of this class with the specified name.static MidiInterpretation2.Method[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Free
Every single event chooses its pitches freely from the global PC-set. -
Instr
Every instrument/voice maximizes independently the distance between PC reuse. -
Comp
Global minimization of PC reuse, with complete control. This is the out-of-time "composer's desktop" situation. -
Impro
Every player minimizes PC reuse, and reacts on the PCs played by the others in simultaneous events.
-
-
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
-