-
- All Implemented Interfaces:
-
java.io.Serializable,java.lang.Comparable
public enum Colors.RgbaTypeTypes of RGBA colors.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SRGBThe color is defined in sRGB space and the RGB values have not been premultiplied by thealpha (for instance, a 50% transparent red is <1,0,0,0.5>).
LINEARThe color is defined in linear space and the RGB values have not been premultiplied bythe alpha (for instance, a 50% transparent red is <1,0,0,0.5>).
PREMULTIPLIED_SRGBThe color is defined in sRGB space and the RGB values have been premultiplied by thealpha (for instance, a 50% transparent red is <0.5,0,0,0.5>).
PREMULTIPLIED_LINEARThe color is defined in linear space and the RGB values have been premultiplied by thealpha (for instance, a 50% transparent red is <0.5,0,0,0.5>).
-
Method Summary
Modifier and Type Method Description static Array<Colors.RgbaType>values()static Colors.RgbaTypevalueOf(String name)-
-
Method Detail
-
values
static Array<Colors.RgbaType> values()
-
valueOf
static Colors.RgbaType valueOf(String name)
-
-
-
-