java.lang.Object
javax.sound.midi.MidiDevice.Info
- Enclosing interface:
- MidiDevice
A 
MidiDevice.Info object contains assorted data about a
 MidiDevice, including its name, the company who created it, and
 descriptive text.- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether the specified object is equal to this info object, returningtrueif the objects are the same.final StringObtains the description of the device.final StringgetName()Obtains the name of the device.final StringObtains the name of the company who supplies the device.final StringObtains the version of the device.final inthashCode()Returns a hash code value for this info object.final StringtoString()Returns a string representation of the info object.
- 
Constructor Details- 
InfoConstructs a device info object.- Parameters:
- name- the name of the device
- vendor- the name of the company who provides the device
- description- a description of the device
- version- version information for the device
 
 
- 
- 
Method Details- 
equalsIndicates whether the specified object is equal to this info object, returningtrueif the objects are the same.
- 
hashCodepublic final int hashCode()Returns a hash code value for this info object.
- 
getNameObtains the name of the device.- Returns:
- a string containing the device's name
 
- 
getVendorObtains the name of the company who supplies the device.- Returns:
- device the vendor's name
 
- 
getDescriptionObtains the description of the device.- Returns:
- a description of the device
 
- 
getVersionObtains the version of the device.- Returns:
- textual version information for the device
 
- 
toStringReturns a string representation of the info object.
 
-