java.lang.Object javax.sound.sampled.Control
public abstract class Control
Line
常常具有一个控件(如 gain 和 pan)集合,这些控件都会影响通过行传递的音频信号。Java Sound 的 Line
对象让您通过将其类作为参数传入 getControl
方法来获得特定的控件对象。
因为各种类型的控件有着不同的目的和特性,所以可以从定义每种控件的子类访问它们的所有功能。
Line.getControls()
,
Line.isControlSupported(javax.sound.sampled.Control.Type)
嵌套类摘要 | |
---|---|
static class |
Control.Type Type 类的实例表示控件的类型。 |
构造方法摘要 | |
---|---|
protected |
Control(Control.Type type) 构造具有指定类型的控件。 |
方法摘要 | |
---|---|
Control.Type |
getType() 获得控件的类型。 |
String |
toString() 获得描述控件类型及其当前状态的 String。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
protected Control(Control.Type type)
type
- 所需控件的种类
方法详细信息 |
---|
public Control.Type getType()
public String toString()