Module java.desktop
Package java.awt

Enum Class GraphicsDevice.WindowTranslucency

java.lang.Object
java.lang.Enum<GraphicsDevice.WindowTranslucency>
java.awt.GraphicsDevice.WindowTranslucency
所有已实现的接口:
Serializable, Comparable<GraphicsDevice.WindowTranslucency>, Constable
封装类:
GraphicsDevice

public static enum GraphicsDevice.WindowTranslucency extends Enum<GraphicsDevice.WindowTranslucency>
底层系统支持的透明度种类。
自版本:
1.7
参见:
  • Enum Constant Details

    • 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之间(包括0.0和1.0)。
  • Method Details

    • values

      public static GraphicsDevice.WindowTranslucency[] values()
      返回包含此枚举类的常量的数组,按照它们声明的顺序排列。
      返回:
      包含此枚举类的常量的数组,按照它们声明的顺序排列
    • valueOf

      public static GraphicsDevice.WindowTranslucency valueOf(String name)
      返回具有指定名称的此类的枚举常量。字符串必须与在此类中声明枚举常量时使用的标识符完全匹配。(不允许存在多余的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      具有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果此枚举类没有具有指定名称的常量
      NullPointerException - 如果参数为null