Class Color

All Implemented Interfaces:
CssProperty, StateChangeInformer<Bean>, Serializable, Cloneable

public class Color extends AbstractCssProperty<Color> implements StateChangeInformer<Bean>
 color: color|initial|inherit;

 The color property specifies the color of text.

 Tip: Use a background color and a text color that makes the text easy to read.
 Inherited:      yes
 Animatable:     yes
 Version:        CSS1
 JavaScript syntax:      object.style.color="#0000FF"
 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • Color

      public Color()
      The initial will be set as the value
    • Color

      public Color(String cssValue)
      Parameters:
      cssValue - the css value to set.
    • Color

      public Color(Color color)
      Parameters:
      color - the Color object from which the cssValue to set.And, null will throw NullValueException
    • Color

      public Color(CssColorName cssColorName)
      Parameters:
      cssColorName - the CssColorName object from which the color name will be taken for cssValue to set. And, null will throw NullValueException.
      Since:
      1.1.4
    • Color

      public Color(RgbCssValue rgbCssValue)
      Parameters:
      rgbCssValue -
  • Method Details

    • setValue

      public Color setValue(String value)
      the color/color code to set. The alternative method setCssValue can also be used.
      Parameters:
      value -
      Returns:
      the current object
      Since:
      1.0.0
    • setValue

      public Color setValue(CssColorName cssColorName)
      Parameters:
      cssColorName - the cssColorName object from which the color name will be taken for setting value.
      Returns:
      the current object
      Since:
      1.1.4
    • getCssName

      public String getCssName()
      Specified by:
      getCssName in interface CssProperty
      Returns:
      the name portion in style, eg align-content for style align-content: center.
    • getCssValue

      public String getCssValue()
      Specified by:
      getCssValue in interface CssProperty
      Returns:
      the value portion in style, eg center for style align-content: center.
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getValue

      public String getValue()
      gets the value, getCssValue method can also be used to get the same value.
      Returns:
      the value in String.
      Since:
      1.0.0
    • setCssValue

      public Color setCssValue(String cssValue)
      Specified by:
      setCssValue in class AbstractCssProperty<Color>
      Parameters:
      cssValue - the value should be a color/color code/rgb, for example #0000ff. null is considered as an invalid value and it will throw NullValueException.And an empty string is also considered as an invalid value and it will throw InvalidValueException.
      Returns:
      the current object.
      Since:
      1.0.0
    • setAsInitial

      public void setAsInitial()
      sets as initial
      Since:
      1.0.0
    • setAsInherit

      public void setAsInherit()
      sets as inherit
      Since:
      1.0.0
    • isValid

      public static boolean isValid(String cssValue)
      Parameters:
      cssValue -
      Returns:
      true if the given cssValue is valid.
      Since:
      1.0.0
    • stateChanged

      public void stateChanged(Bean stateChangedObject)
      Specified by:
      stateChanged in interface StateChangeInformer<Bean>
    • getRgbCssValue

      public RgbCssValue getRgbCssValue()
      Returns:
      the rgbCssValue
      Since:
      1.0.0
    • getRgbaCssValue

      public RgbaCssValue getRgbaCssValue()
      Returns:
      the rgbaCssValue
      Since:
      1.0.0
    • getHslCssValue

      public HslCssValue getHslCssValue()
      Returns:
      the hslCssValue
      Since:
      1.0.0
    • getHslaCssValue

      public HslaCssValue getHslaCssValue()
      Returns:
      the hslaCssValue
      Since:
      1.0.0
    • setRgbCssValue

      public void setRgbCssValue(RgbCssValue rgbCssValue)
      Parameters:
      rgbCssValue - the rgbCssValue to set
      Since:
      1.0.0
    • setRgbaCssValue

      public void setRgbaCssValue(RgbaCssValue rgbaCssValue)
      Parameters:
      rgbaCssValue - the rgbaCssValue to set
      Since:
      1.0.0
    • setHslCssValue

      public void setHslCssValue(HslCssValue hslCssValue)
      Parameters:
      hslCssValue - the hslCssValue to set
      Since:
      1.0.0
    • setHslaCssValue

      public void setHslaCssValue(HslaCssValue hslaCssValue)
      Parameters:
      hslaCssValue - the hslaCssValue to set
      Since:
      1.0.0