java.lang.Object | ||||
↳ | javax.sound.midi.SoundbankResource | |||
↳ | javax.sound.midi.Instrument | |||
↳ | com.sun.media.sound.ModelInstrument | |||
↳ | com.sun.media.sound.DLSInstrument |
This class is used to store information to describe instrument. It contains list of regions and modulators. It is stored inside a "ins " List Chunk inside DLS files. In the DLS documentation a modulator is called articulator.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
bank | |||||||||||
druminstrument | |||||||||||
guid | |||||||||||
info | |||||||||||
modulators | |||||||||||
preset | |||||||||||
regions |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Obtains the sampled audio that is stored in this
SoundbankResource . | |||||||||||
Obtains the name of the resource.
| |||||||||||
Obtains the
Patch object that indicates the bank and program
numbers where this instrument is to be stored in the synthesizer. | |||||||||||
Returns a string representation of the object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Obtains the sampled audio that is stored in this SoundbankResource
.
The type of object returned depends on the implementation of the
concrete class, and may be queried using getDataClass
.
Obtains the name of the resource. This should generally be a string descriptive of the resource.
Obtains the Patch
object that indicates the bank and program
numbers where this instrument is to be stored in the synthesizer.
Returns a string representation of the object. In general, the
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())