Class SoundbankReader
- java.lang.Object
-
- javax.sound.midi.spi.SoundbankReader
public abstract class SoundbankReader extends Object
A SoundbankReader supplies soundbank file-reading services. Concrete subclasses of SoundbankReader parse a given soundbank file, producing a Soundbank object that can be loaded into a Synthesizer.
- Since:
- 1.3
Constructors
| Constructor | Description |
|---|---|
SoundbankReader() |
Methods
| Modifier and Type | Method | Description |
|---|---|---|
abstract Soundbank | getSoundbank(File file) | Obtains a soundbank object from the |
abstract Soundbank | getSoundbank(InputStream stream) | Obtains a soundbank object from the |
abstract Soundbank | getSoundbank(URL url) | Obtains a soundbank object from the |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait Constructors
SoundbankReader
public SoundbankReader()
Methods
getSoundbank
public abstract Soundbank getSoundbank(URL url)
throws InvalidMidiDataException,
IOException Obtains a soundbank object from the URL provided.
- Parameters:
-
url-URLrepresenting the soundbank - Returns:
- soundbank object
- Throws:
-
InvalidMidiDataException- if theURLdoes not point to valid MIDI soundbank data recognized by this soundbank reader -
IOException- if an I/O error occurs -
NullPointerException- ifurlisnull
getSoundbank
public abstract Soundbank getSoundbank(InputStream stream)
throws InvalidMidiDataException,
IOException Obtains a soundbank object from the InputStream provided.
- Parameters:
-
stream-InputStreamrepresenting the soundbank - Returns:
- soundbank object
- Throws:
-
InvalidMidiDataException- if the stream does not point to valid MIDI soundbank data recognized by this soundbank reader -
IOException- if an I/O error occurs -
NullPointerException- ifstreamisnull
getSoundbank
public abstract Soundbank getSoundbank(File file)
throws InvalidMidiDataException,
IOException Obtains a soundbank object from the File provided.
- Parameters:
-
file- theFilerepresenting the soundbank - Returns:
- soundbank object
- Throws:
-
InvalidMidiDataException- if the file does not point to valid MIDI soundbank data recognized by this soundbank reader -
IOException- if an I/O error occurs -
NullPointerException- iffileisnull
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/sound/midi/spi/SoundbankReader.html