Interface MidiExpressions
public interface MidiExpressions
Creates useful MIDI expressions that can be used to match MIDI events.
- Since:
- API version 10
-
Method Summary
Modifier and TypeMethodDescriptioncreateIsCCExpression(int controlNumber) Creates an expression that recognizes a MIDI CC event regardless of its channel.createIsCCExpression(int channel, int controlNumber) Creates an expression that recognizes a MIDI CC event.createIsCCValueExpression(int channel, int control, int value) Creates an expression that recognizes a MIDI CC event with a specific value.createIsNoteOffExpression(int channel, int note) Creates an expression that recognizes a note off event.createIsNoteOnExpression(int channel, int note) Creates an expression that recognizes a note on event.createIsPitchBendExpression(int channel) Creates an expression that recognizes a pitch bend event.createIsPolyAftertouch(int channel, int note) Creates an expression that recognizes a polyphonic aftertouch event.
-
Method Details
-
createIsCCExpression
Creates an expression that recognizes a MIDI CC event regardless of its channel.- Since:
- API version 11
-
createIsCCExpression
Creates an expression that recognizes a MIDI CC event. -
createIsCCValueExpression
Creates an expression that recognizes a MIDI CC event with a specific value. This expression can be used inorinvalid reference
#createActionMatcher(String), for example.invalid reference
#createAbsoluteValueMatcher(String, String, int)- Since:
- API version 10
-
createIsPitchBendExpression
Creates an expression that recognizes a pitch bend event. This expression can be used inorinvalid reference
#createActionMatcher(String), for example.invalid reference
#createAbsoluteValueMatcher(String, String, int)- Since:
- API version 10
-
createIsNoteOnExpression
Creates an expression that recognizes a note on event. This expression can be used inorinvalid reference
#createActionMatcher(String), for example.invalid reference
#createAbsoluteValueMatcher(String, String, int)- Since:
- API version 10
-
createIsNoteOffExpression
Creates an expression that recognizes a note off event. This expression can be used inorinvalid reference
#createActionMatcher(String), for example.invalid reference
#createAbsoluteValueMatcher(String, String, int)- Since:
- API version 10
-
createIsPolyAftertouch
Creates an expression that recognizes a polyphonic aftertouch event. This expression can be used inorinvalid reference
#createActionMatcher(String), for example.invalid reference
#createAbsoluteValueMatcher(String, String, int)- Since:
- API version 10
-