模块  java.desktop
软件包  java.awt

Enum GraphicsDevice.WindowTranslucency

    • Enum Constant Detail

      • PERPIXEL_TRANSPARENT

        public static final GraphicsDevice.WindowTranslucency PERPIXEL_TRANSPARENT
        表示对底层系统的支持,其中每个像素都保证完全不透明,alpha值为1.0,或完全透明,alpha值为0.0。
      • TRANSLUCENT

        public static final GraphicsDevice.WindowTranslucency TRANSLUCENT
        表示对底层系统的支持,其中所有像素的alpha值都在0.0和1.0之间或包括0.0和1.0。
      • PERPIXEL_TRANSLUCENT

        public static final GraphicsDevice.WindowTranslucency PERPIXEL_TRANSLUCENT
        表示底层系统中对包含或可能包含任意alpha值(包括0.0和1.0)之间的像素的窗口的支持。
    • 方法详细信息

      • values

        public static GraphicsDevice.WindowTranslucency[] values()
        按照声明的顺序返回一个包含此枚举类型常量的数组。 此方法可用于迭代常量,如下所示:
          for (GraphicsDevice.WindowTranslucency c : GraphicsDevice.WindowTranslucency.values())
            System.out.println(c); 
        结果
        包含此枚举类型常量的数组,按声明的顺序排列
      • valueOf

        public static GraphicsDevice.WindowTranslucency valueOf​(String name)
        返回具有指定名称的此类型的枚举常量。 该字符串必须与用于声明此类型中的枚举常量的标识符完全匹配。 (不允许使用无关的空白字符。)
        参数
        name - 要返回的枚举常量的名称。
        结果
        具有指定名称的枚举常量
        异常
        IllegalArgumentException - 如果此枚举类型没有指定名称的常量
        NullPointerException - 如果参数为null