- java.lang.Object
-
- java.lang.Enum<GraphicsDevice.WindowTranslucency>
-
- java.awt.GraphicsDevice.WindowTranslucency
-
- Enclosing class:
- GraphicsDevice
public static enum GraphicsDevice.WindowTranslucency extends Enum<GraphicsDevice.WindowTranslucency>
底层系统支持的各种半透明。
-
-
Enum Constant Summary
Enum Constants Enum Constant 描述 PERPIXEL_TRANSLUCENT
表示底层系统中对包含或可能包含任意alpha值(包括0.0和1.0)之间的像素的窗口的支持。PERPIXEL_TRANSPARENT
表示对底层系统的支持,其中每个像素都保证完全不透明,alpha值为1.0,或完全透明,alpha值为0.0。TRANSLUCENT
表示对底层系统的支持,其中所有像素的alpha值都在0.0和1.0之间或包括0.0和1.0。
-
方法摘要
所有方法 静态方法 具体的方法 变量和类型 方法 描述 static GraphicsDevice.WindowTranslucency
valueOf(String name)
返回具有指定名称的此类型的枚举常量。static GraphicsDevice.WindowTranslucency[]
values()
按照声明的顺序返回一个包含此枚举类型常量的数组。
-
-
-
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
-
-