- java.lang.Object
-
- javax.sound.sampled.Control
-
- 已知直接子类:
-
BooleanControl
,CompoundControl
,EnumControl
,FloatControl
public abstract class Control extends Object
Lines
通常有一组控制,如增益和平移,影响通过线路的音频信号。 Java Sound的Line
对象允许您通过将其类作为参数传递给一个getControl
方法来获取特定的控件对象。因为各种类型的控件具有不同的目的和特征,所以它们的所有功能都是从定义各种控件的子类进行访问的。
- 从以下版本开始:
- 1.3
- 另请参见:
-
Line.getControls()
,Line.isControlSupported(javax.sound.sampled.Control.Type)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class 描述 static class
Control.Type
Type
类的实例表示控件的类型。
-
构造方法摘要
构造方法 Modifier Constructor 描述 protected
Control(Control.Type type)
构造具有指定类型的控件。
-
-
-
构造方法详细信息
-
Control
protected Control(Control.Type type)
构造具有指定类型的控件。- 参数
-
type
- 所需的控制种类
-
-
方法详细信息
-
getType
public Control.Type getType()
获取控件的类型。- 结果
- 控件的类型
-
-