public static class Mixer.Info extends Object
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.
protected Info(String name, String vendor, String description, String version)
Constructs a mixer's info object, passing it the given textual information.
name
- the name of the mixervendor
- the company who manufactures or creates the hardware or software mixerdescription
- descriptive text about the mixerversion
- version information for the mixerpublic final boolean equals(Object obj)
Indicates whether two info objects are equal, returning true
if they are identical.
equals
in class Object
obj
- the reference object with which to compare this info objecttrue
if this info object is the same as the obj
argument; false
otherwiseObject.hashCode()
, HashMap
public final int hashCode()
Finalizes the hashcode method.
hashCode
in class Object
Object.equals(java.lang.Object)
, System.identityHashCode(java.lang.Object)
public final String getName()
Obtains the name of the mixer.
public final String getVendor()
Obtains the vendor of the mixer.
public final String getDescription()
Obtains the description of the mixer.
public final String getVersion()
Obtains the version of the mixer.
public final String toString()
Provides a string representation of the mixer info.
© 1993–2017, 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.