Java javax.sound.midi MidiDevice fields, constructors, methods, implement or subclass

Example usage for Java javax.sound.midi MidiDevice fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.sound.midi MidiDevice.

The text is from its open source code.

Method

voidclose()
Closes the device, indicating that the device should now release any system resources it is using.
InfogetDeviceInfo()
Obtains information about the device, including its Java class and Strings containing its name, vendor, and description.
intgetMaxReceivers()
Obtains the maximum number of MIDI IN connections available on this MIDI device for receiving MIDI data.
intgetMaxTransmitters()
Obtains the maximum number of MIDI OUT connections available on this MIDI device for transmitting MIDI data.
longgetMicrosecondPosition()
Obtains the current time-stamp of the device, in microseconds.
ReceivergetReceiver()
Obtains a MIDI IN receiver through which the MIDI device may receive MIDI data.
ListgetReceivers()
Returns all currently active, non-closed receivers connected with this MidiDevice .
TransmittergetTransmitter()
Obtains a MIDI OUT connection from which the MIDI device will transmit MIDI data.
ListgetTransmitters()
Returns all currently active, non-closed transmitters connected with this MidiDevice .
booleanisOpen()
Reports whether the device is open.
voidopen()
Opens the device, indicating that it should now acquire any system resources it requires and become operational.