Klasse Color

Alle implementierten Schnittstellen:
IElement, IColor

public final class Color extends AbstractElement implements IColor
A Color is not mutable.
Version:
2016-01-01
Autor:
Silvan Wyss
  • Felddetails

    • DEFAULT_ALPHA_VALUE

      public static final int DEFAULT_ALPHA_VALUE
      Siehe auch:
    • MIN_COLOR_LONG

      public static final long MIN_COLOR_LONG
      Siehe auch:
    • MAX_COLOR_LONG

      public static final long MAX_COLOR_LONG
      Siehe auch:
    • MIN_COLOR_COMPONENT

      public static final short MIN_COLOR_COMPONENT
      Siehe auch:
    • MAX_COLOR_COMPONENT

      public static final short MAX_COLOR_COMPONENT
      Siehe auch:
  • Methodendetails

    • createAverageFrom

      public static Color createAverageFrom(IColor color, IColor... colors)
    • createAverageFrom

      public static Color createAverageFrom(IContainer<IColor> colors)
    • fromColor

      public static Color fromColor(IColor color)
      Parameter:
      color -
      Gibt zurück:
      a new Color from the given color.
      Löst aus:
      NullPointerException - if the given color is null.
    • fromLong

      public static Color fromLong(long pLong)
      Parameter:
      pLong -
      Gibt zurück:
      a new Color from the given pLong.
      Löst aus:
      UnrepresentingArgumentException - if the given pLong does not represent a Color.
    • fromSpecification

      public static Color fromSpecification(INode<?> specification)
      Parameter:
      specification -
      Gibt zurück:
      a new Color from the given specification
      Löst aus:
      InvalidArgumentException - if the given specification is not valid.
    • fromString

      public static Color fromString(String string)
      Parameter:
      string -
      Gibt zurück:
      a new Color from the given string.
      Löst aus:
      UnrepresentingArgumentException - if the given string does not represent a Color.
    • withRedValueAndGreenValueAndBlueValue

      public static Color withRedValueAndGreenValueAndBlueValue(int redValue, int greenValue, int blueValue)
      Parameter:
      redValue -
      greenValue -
      blueValue -
      Gibt zurück:
      a new Color with the given redValue, greenValue and blueValue.
      Löst aus:
      ArgumentIsOutOfRangeException - if the given blueValue is not a true color component (in [0, 255]).
      ArgumentIsOutOfRangeException - if the given greenValue is not a true color component (in [0, 255]).
      ArgumentIsOutOfRangeException - if the given blueValue is not a true color component (in [0, 255]).
    • withRedValueAndGreenValueAndBlueValueAndAlphaValue

      public static Color withRedValueAndGreenValueAndBlueValueAndAlphaValue(int redValue, int greenValue, int blueValue, int alphaValue)
      Parameter:
      redValue -
      greenValue -
      blueValue -
      alphaValue -
      Gibt zurück:
      a new Color with the given redValue, greenValue, blueValue and alphaValue.
      Löst aus:
      ArgumentIsOutOfRangeException - if the given blueValue is not a true color component (in [0, 255]).
      ArgumentIsOutOfRangeException - if the given greenValue is not a true color component (in [0, 255]).
      ArgumentIsOutOfRangeException - if the given blueValue is not a true color component (in [0, 255]).
      ArgumentIsOutOfRangeException - if the given alphaValue is not a true color component (in [0, 255]).
    • getAlphaPercentage

      public double getAlphaPercentage()
      Angegeben von:
      getAlphaPercentage in Schnittstelle IColor
      Gibt zurück:
      the alpha value of the current IColor as percentage. A percentage is a number in the range [0.0, 1.0].
    • getAlphaValue

      public int getAlphaValue()
      Angegeben von:
      getAlphaValue in Schnittstelle IColor
      Gibt zurück:
      the alpha value of the current IColor.
    • getAttributes

      public IContainer<INode<?>> getAttributes()
      Angegeben von:
      getAttributes in Schnittstelle IElement
      Gibt zurück:
      the attributes of the current IElement.
    • getBluePercentage

      public double getBluePercentage()
      Angegeben von:
      getBluePercentage in Schnittstelle IColor
      Gibt zurück:
      the blue value of the current IColor as percentage. A percentage is a number in the range [0.0, 1.0].
    • getBlueValue

      public int getBlueValue()
      Angegeben von:
      getBlueValue in Schnittstelle IColor
      Gibt zurück:
      the blue value of the current IColor.
    • getColorNameOrHexadecimalString

      public String getColorNameOrHexadecimalString()
      Angegeben von:
      getColorNameOrHexadecimalString in Schnittstelle IColor
      Gibt zurück:
      the color name or a hexadecimal String representation of the current IColor.
    • getGreenPercentage

      public double getGreenPercentage()
      Angegeben von:
      getGreenPercentage in Schnittstelle IColor
      Gibt zurück:
      the green value of the current IColor as percentage. A percentage is a number in the range [0.0, 1.0].
    • getGreenValue

      public int getGreenValue()
      Angegeben von:
      getGreenValue in Schnittstelle IColor
      Gibt zurück:
      the green value of the current IColor.
    • getInvertedColor

      public Color getInvertedColor()
      The inverted IColor of a IColor has the same alpha value.
      Angegeben von:
      getInvertedColor in Schnittstelle IColor
      Gibt zurück:
      the inverted IColor of the current IColor.
    • getRedPercentage

      public double getRedPercentage()
      Angegeben von:
      getRedPercentage in Schnittstelle IColor
      Gibt zurück:
      the red value of the current IColor as percentage. A percentage is a number in the range [0.0, 1.0].
    • getRedValue

      public int getRedValue()
      Angegeben von:
      getRedValue in Schnittstelle IColor
      Gibt zurück:
      the red value of the current IColor.
    • hasFullAlphaValue

      public boolean hasFullAlphaValue()
      Angegeben von:
      hasFullAlphaValue in Schnittstelle IColor
      Gibt zurück:
      true if the current IColor has a full alpha value.
    • hasFullBlueValue

      public boolean hasFullBlueValue()
      Angegeben von:
      hasFullBlueValue in Schnittstelle IColor
      Gibt zurück:
      true if the current IColor has a full blue value.
    • hasFullGreenValue

      public boolean hasFullGreenValue()
      Angegeben von:
      hasFullGreenValue in Schnittstelle IColor
      Gibt zurück:
      true if the current IColor has a full green value.
    • hasFullRedValue

      public boolean hasFullRedValue()
      Angegeben von:
      hasFullRedValue in Schnittstelle IColor
      Gibt zurück:
      true if the current IColor has a full red value.
    • toAlphaRedGreenBlueInt

      public int toAlphaRedGreenBlueInt()
      Angegeben von:
      toAlphaRedGreenBlueInt in Schnittstelle IColor
      Gibt zurück:
      an integer representation of the current IColor with the schema alpha-red-green-blue.
    • toHexadecimalString

      public String toHexadecimalString()
      Angegeben von:
      toHexadecimalString in Schnittstelle IColor
      Gibt zurück:
      a hexadecimal String representation of the current IColor.
    • toHexadecimalStringWithAlphaValue

      public String toHexadecimalStringWithAlphaValue()
      Angegeben von:
      toHexadecimalStringWithAlphaValue in Schnittstelle IColor
      Gibt zurück:
      a hexadecimal with alpha value String representation of the current IColor.
    • toLong

      public long toLong()
      Angegeben von:
      toLong in Schnittstelle IColor
      Gibt zurück:
      a long representation of the current IColor.
    • withFloatingPointAlphaValue

      public IColor withFloatingPointAlphaValue(double floatingPointAlphaValue)
      Angegeben von:
      withFloatingPointAlphaValue in Schnittstelle IColor
      Parameter:
      floatingPointAlphaValue -
      Gibt zurück:
      a new IColor from the current IColor with the given floatingPointAlphaValue.
    • withFullAlphaValue

      public Color withFullAlphaValue()
      Angegeben von:
      withFullAlphaValue in Schnittstelle IColor
      Gibt zurück:
      a new IColor from the current IColor with a full alpha value.
    • withAlphaValue

      public Color withAlphaValue(int alphaValue)
      Angegeben von:
      withAlphaValue in Schnittstelle IColor
      Parameter:
      alphaValue -
      Gibt zurück:
      a new IColor from the current IColor with the given alphaValue.