The pixels are stored in adjacent bytes with the non-premultiplied components stored in order of increasing index: blue, green, red, alpha.
The pixels are stored in adjacent bytes with the premultiplied components stored in order of increasing index: blue, green, red, alpha.
The pixel colors are referenced by byte indices stored in the pixel array, with the byte interpreted as an unsigned index into a list of colors provided by the PixelFormat object.
The opaque pixels are stored in adjacent bytes with the color components stored in order of increasing index: red, green, blue.
The pixels are stored in 32-bit integers with the non-premultiplied components stored in order, from MSb to LSb: alpha, red, green, blue.
The pixels are stored in 32-bit integers with the premultiplied components stored in order, from MSb to LSb: alpha, red, green, blue.
Returns the enum constant of this type with the specified name.
Returns the enum constant of this type with the specified name.
the name of the constant to return
IllegalArgumentException If the specified enum type has no constant with the specified name,
or the specified class object does not represent an enum type.
Converts a JavaFX enum to its respective SFXEnumDelegate.
Converts a JavaFX enum to its respective SFXEnumDelegate.
JavaFX enum
scalafx.delegate.SFXEnumDelegate equivalent to argument.
Converts a SFXEnumDelegate to its respective JavaFX Enum.
Converts a SFXEnumDelegate to its respective JavaFX Enum.
SFXEnumDelegate instance
Delegated enum
Contain constants which will be source for values List
Contain constants which will be source for values List
Returns a List containing the constants of this enum type, in the order they are declared.
Returns a List containing the constants of this enum type, in the order they are declared.