Class Color


public class Color extends PrimitiveType<Integer>
Primitive type that represents an RGBA color.
  • Constructor Details

    • Color

      public Color(Integer value)
    • Color

      public Color(int r, int g, int b, int a)
  • Method Details

    • valueOf

      public static Color valueOf(String s)
      Returns an Color object holding the value of the specified string.
      Parameters:
      s - The string to be parsed.
      Returns:
      See above.
    • getRed

      public int getRed()
      Returns the red component of this color.
      Returns:
      See above.
    • getGreen

      public int getGreen()
      Returns the green component of this color.
      Returns:
      See above.
    • getBlue

      public int getBlue()
      Returns the blue component of this color.
      Returns:
      See above.
    • getAlpha

      public int getAlpha()
      Returns the alpha component of this color.
      Returns:
      See above.