Module java.desktop

Class Control.Type

java.lang.Object
javax.sound.sampled.Control.Type
直接已知的子类:
BooleanControl.Type, CompoundControl.Type, EnumControl.Type, FloatControl.Type
封装类:
Control

public static class Control.Type extends Object
Type类的一个实例表示控件的类型。
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    Type(String name)
    构造具有指定名称的新控件类型。
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    equals(Object obj)
    指示指定对象是否等于此控件类型,如果对象相同则返回true
    final int
    返回此控件类型的哈希码值。
    final String
    将类型的名称作为控件类型的字符串表示返回。

    Methods declared in class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Type

      protected Type(String name)
      使用指定的名称构造新的控件类型。名称应该是一个适合在应用程序中标记控件的描述性字符串,例如"增益"或"平衡"。
      参数:
      name - 新控件类型的名称
  • Method Details