public abstract class Control extends Object
Lines经常有一组控制,如增益和平移,影响通过线路的音频信号。 
       Java Sound的Line对象可以通过将其类作为参数传递给getControl方法来获取特定的控件对象。 
       因为各种类型的控件具有不同的目的和特征,所以它们的所有功能都是从定义各种控件的子类进行访问的。
Line.getControls() , 
        Line.isControlSupported(javax.sound.sampled.Control.Type) 
       | Modifier and Type | Class and Description | 
|---|---|
| static class  | Control.TypeType类的一个实例表示控件的类型。 | 
| Modifier | Constructor and Description | 
|---|---|
| protected  | Control(Control.Type type)
              构造具有指定类型的控件。 
             | 
protected Control(Control.Type type)
type - 所需的控制种类 
           public Control.Type getType()
 Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
 Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.