public static enum GraphicsDevice.WindowTranslucency extends Enum<GraphicsDevice.WindowTranslucency>
GraphicsDevice.isWindowTranslucencySupported(java.awt.GraphicsDevice.WindowTranslucency)
列挙型定数と説明 |
---|
PERPIXEL_TRANSLUCENT
0.0から1.0までの範囲の任意のアルファ値を持つピクセルを含むか、または含む可能性のあるウィンドウに対する、基本となるシステムでのサポートを表します。
|
PERPIXEL_TRANSPARENT
各ピクセルが完全に不透明(アルファ値が1.0)または完全に透明(アルファ値が0.0)のどちらかであることが保証されているウィンドウに対する、基本となるシステムでのサポートを表します。
|
TRANSLUCENT
すべてのピクセルが0.0から1.0までの範囲の同じアルファ値を持つウィンドウに対する、基本となるシステムでのサポートを表します。
|
修飾子と型 | メソッドと説明 |
---|---|
static GraphicsDevice.WindowTranslucency |
valueOf(String name)
指定された名前を持つ、この型の列挙型定数を返します。
|
static GraphicsDevice.WindowTranslucency[] |
values()
この列挙型の定数を含む配列を、宣言されている順序で返します。
|
public static final GraphicsDevice.WindowTranslucency PERPIXEL_TRANSPARENT
public static final GraphicsDevice.WindowTranslucency TRANSLUCENT
public static final GraphicsDevice.WindowTranslucency PERPIXEL_TRANSLUCENT
public static GraphicsDevice.WindowTranslucency[] values()
for (GraphicsDevice.WindowTranslucency c : GraphicsDevice.WindowTranslucency.values()) System.out.println(c);
public static GraphicsDevice.WindowTranslucency valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- 指定された名前を持つ定数をこの列挙型が持っていない場合NullPointerException
- 引数がnullの場合 バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.