BooleanControl
, CompoundControl
, EnumControl
, FloatControl
public abstract class Control extends Object
Lines
often have a set of controls, such as gain and pan, that affect the audio signal passing through the line. Java Sound's Line
objects let you obtain a particular control object by passing its class as the argument to a getControl
method. Because the various types of controls have different purposes and features, all of their functionality is accessed from the subclasses that define each kind of control.
Modifier and Type | Class | Description |
---|---|---|
static class |
Control.Type |
An instance of the Type class represents the type of the control. |
Modifier | Constructor | Description |
---|---|---|
protected |
Constructs a control with the specified type. |
Modifier and Type | Method | Description |
---|---|---|
Control.Type |
getType() |
Obtains the control's type. |
String |
toString() |
Returns a string representation of the control. |
protected Control(Control.Type type)
type
- the kind of control desiredpublic Control.Type getType()
public String toString()
© 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.html