public static class MidiDevice.Info extends Object
A MidiDevice.Info
object contains assorted data about a
, including its name, the company who created it, and descriptive text.MidiDevice
MidiDevice.getDeviceInfo()
protected Info(String name, String vendor, String description, String version)
Constructs a device info object.
name
- the name of the devicevendor
- the name of the company who provides the devicedescription
- a description of the deviceversion
- version information for the devicepublic final boolean equals(Object obj)
Reports whether two objects are equal. Returns true
if the objects are identical.
equals
in class Object
obj
- the reference object with which to compare this objecttrue
if this 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 device.
public final String getVendor()
Obtains the name of the company who supplies the device.
public final String getDescription()
Obtains the description of the device.
public final String getVersion()
Obtains the version of the device.
public final String toString()
Provides a string representation of the device information.
© 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.