Serializable
, Comparable<GraphicsDevice.WindowTranslucency>
, Constable
GraphicsDevice
public static enum GraphicsDevice.WindowTranslucency extends Enum<GraphicsDevice.WindowTranslucency>
Enum.EnumDesc<E extends Enum<E>>
Enum Constant | Description |
---|---|
PERPIXEL_TRANSLUCENT |
Represents support in the underlying system for windows that contain or might contain pixels with arbitrary alpha values between and including 0.0 and 1.0. |
PERPIXEL_TRANSPARENT |
Represents support in the underlying system for windows each pixel of which is guaranteed to be either completely opaque, with an alpha value of 1.0, or completely transparent, with an alpha value of 0.0. |
TRANSLUCENT |
Represents support in the underlying system for windows all of the pixels of which have the same alpha value between or including 0.0 and 1.0. |
Modifier and Type | Method | Description |
---|---|---|
static GraphicsDevice.WindowTranslucency |
valueOf |
Returns the enum constant of this class with the specified name. |
static GraphicsDevice.WindowTranslucency[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
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()
public static GraphicsDevice.WindowTranslucency valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/java/awt/GraphicsDevice.WindowTranslucency.html