On this page
Class Control.Type
java.lang.Object
javax.sound.sampled.Control.Type
- Direct Known Subclasses:
BooleanControl.Type
,CompoundControl.Type
,EnumControl.Type
,FloatControl.Type
- Enclosing class:
-
Control
public static class Control.Type extends Object
An instance of the
Type
class represents the type of the control.
Constructor Summary
Modifier | Constructor | Description |
---|---|---|
protected |
Constructs a new control type with the name specified.
|
Method Summary
Modifier and Type | Method | Description |
---|---|---|
final boolean |
equals |
Indicates whether the specified object is equal to this control type, returning true if the objects are the same.
|
final int |
hashCode() |
Returns a hash code value for this control type.
|
final String |
toString() |
Returns type's name as the string representation of the control type.
|
Constructor Details
Type
protected Type(String name)
Constructs a new control type with the name specified. The name should be a descriptive string appropriate for labelling the control in an application, such as "Gain" or "Balance".
- Parameters:
name
- the name of the new control type
Method Details
equals
public final boolean equals(Object obj)
Indicates whether the specified object is equal to this control type, returning
true
if the objects are the same.
hashCode
public final int hashCode()
Returns a hash code value for this control type.
toString
public final String toString()
Returns type's name as the string representation of the control type.
© 1993, 2023, 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.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/sound/sampled/Control.Type.html