Package 

Enum Colors.RgbaType

  • All Implemented Interfaces:
    java.io.Serializable , java.lang.Comparable

    
    public enum Colors.RgbaType
    
                        

    Types of RGBA colors.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      SRGB

      The 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>).

      LINEAR

      The 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_SRGB

      The 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_LINEAR

      The 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.RgbaType valueOf(String name)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait