API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.sound.midi. SysexMessage View Source
Author(s)
David Rivas
Kara Kytle
Florian Bomers
Since
Version
1.27, 05/11/17
Serial
Hierarchy
 Object
      MidiMessage
          SysexMessage
Implements
Subclasses
Description
public class SysexMessage
  A SysexMessage object represents a MIDI system exclusive message.
See also:   
Constructors
public SysexMessage ()
  Constructs a new SysexMessage.
protected SysexMessage (byte[] data)
  Constructs a new SysexMessage.
Methods
Hide/Show inherited methods
public Object clone () [Specified in MidiMessage]
  Creates a new object of the same class and with the same contents as this object.
public byte getData ()
  Obtains a copy of the data for the system exclusive message.
public int getLength () [Inherited From MidiMessage]
  Obtains the total length of the MIDI message in bytes.
public byte getMessage () [Inherited From MidiMessage]
  Obtains the MIDI message data.
public int getStatus () [Inherited From MidiMessage]
  Obtains the status byte for the MIDI message.
public void setMessage (byte[] data, int length) throws InvalidMidiDataException [Overrides MidiMessage]
  Sets the data for the system exclusive message.
public void setMessage (int status, byte[] data, int length) throws InvalidMidiDataException
  Sets the data for the system exclusive message.
Fields
Hide/Show inherited fields
protected byte data [Inherited From MidiMessage]
  The MIDI message data.
protected int length [Inherited From MidiMessage]
  The number of bytes in the MIDI message, including the status byte and any data bytes.
publicfinalstatic int SPECIAL_SYSTEM_EXCLUSIVE = "247"
  Status byte for Special System Exclusive message (0xF7, or 247), which is used in MIDI files.
publicfinalstatic int SYSTEM_EXCLUSIVE = "240"
  Status byte for System Exclusive message (0xF0, or 240).
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar