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.
Line.getControls()
, Line.isControlSupported(javax.sound.sampled.Control.Type)
Modifier and Type | Class and Description |
---|---|
static class |
Control.Type An instance of the |
protected Control(Control.Type type)
Constructs a Control with the specified type.
type
- the kind of control desiredpublic Control.Type getType()
Obtains the control's type.
public String toString()
Obtains a String describing the control type and its current state.
© 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.