java.lang.Object
javax.sound.sampled.Mixer.Info
- Enclosing interface:
- Mixer
The 
Mixer.Info class represents information about an audio mixer,
 including the product's name, version, and vendor, along with a textual
 description. This information may be retrieved through the
 getMixerInfo method of the Mixer
 interface.- Since:
- 1.3
- 
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 mixer.final StringgetName()Obtains the name of the mixer.final StringObtains the vendor of the mixer.final StringObtains the version of the mixer.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 mixer's info object, passing it the given textual information.- Parameters:
- name- the name of the mixer
- vendor- the company who manufactures or creates the hardware or software mixer
- description- descriptive text about the mixer
- version- version information for the mixer
 
 
- 
- 
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 mixer.- Returns:
- a string that names the mixer
 
- 
getVendorObtains the vendor of the mixer.- Returns:
- a string that names the mixer's vendor
 
- 
getDescriptionObtains the description of the mixer.- Returns:
- a textual description of the mixer
 
- 
getVersionObtains the version of the mixer.- Returns:
- textual version information for the mixer
 
- 
toStringReturns a string representation of the info object.
 
-