Class OutlineColor

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

public class OutlineColor extends AbstractCssProperty<OutlineColor> implements StateChangeInformer<Bean>
 outline-color: invert|color|initial|inherit;

 An outline is a line that is drawn around elements (outside the borders) to make the element "stand out".

 The outline-color property specifies the color of an outline.

 Note: Always declare the outline-style property before the outline-color property. An element must have an outline before you change the color of it.
 Default value:  invert
 Inherited:      no
 Animatable:     yes, see individual properties

 Version:        CSS2
 JavaScript syntax:      object.style.outlineColor="#FF0000"
 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • OutlineColor

      public OutlineColor()
      The invert will be set as the value
    • OutlineColor

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

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

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

    • setValue

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

      public void setAsInvert()
      sets as invert
      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