public static class Mixer.Info extends Object
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.| Modifier | Constructor | Description | 
|---|---|---|
| protected  | Info(String name,
    String vendor,
    String description,
    String version) | Constructs a mixer's info object, passing it the given
 textual information. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| boolean | equals(Object obj) | Indicates whether two info objects are equal, returning  trueif
 they are identical. | 
| String | getDescription() | Obtains the description of the mixer. | 
| String | getName() | Obtains the name of the mixer. | 
| String | getVendor() | Obtains the vendor of the mixer. | 
| String | getVersion() | Obtains the version of the mixer. | 
| int | hashCode() | Finalizes the hashcode method. | 
| String | toString() | Provides a string representation of the mixer info. | 
protected Info(String name, String vendor, String description, String version)
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)
true if
 they are identical.equals in class Objectobj - the reference object with which to compare this info
 objecttrue if this info object is the same as the
 obj argument; false otherwiseObject.hashCode(), 
HashMappublic final int hashCode()
hashCode in class ObjectObject.equals(java.lang.Object), 
System.identityHashCode(java.lang.Object)public final String getName()
public final String getVendor()
public final String getDescription()
public final String getVersion()
 Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
 Copyright © 1993, 2025, Oracle and/or its affiliates.  All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.