Class BackgroundColor

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

public class BackgroundColor extends AbstractCssProperty<BackgroundColor> implements StateChangeInformer<Bean>
 background-color: color|transparent|initial|inherit;

 The background-color property sets the background color of an element.

 The background of an element is the total size of the element, including padding and border (but not the margin).

 Tip: Use a background color and a text color that makes the text easy to read.
 Default value:  transparent
 Inherited:      no
 Animatable:     yes
 Version:        CSS1
 JavaScript syntax:      object.style.backgroundColor="#00FF00"
 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • BackgroundColor

      public BackgroundColor()
      The transparent will be set as the value
    • BackgroundColor

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

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

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

    • setValue

      public BackgroundColor 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
    • 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 BackgroundColor setCssValue(String cssValue)
      Specified by:
      setCssValue in class AbstractCssProperty<BackgroundColor>
      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
    • setAsTransparent

      public void setAsTransparent()
      sets as transparent
      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