Class BorderRightColor

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

public class BorderRightColor extends AbstractCssProperty<BorderRightColor> implements StateChangeInformer<Bean>
 border-right-color: color|transparent|initial|inherit;

 The border-right-color property sets the color of an element's right border.

 Note: Always declare the border-style property before the border-right-color property. An element must have borders before you can change the color.
 Default value:  black
 Inherited:      no
 Animatable:     yes
 Version:        CSS1
 JavaScript syntax:      object.style.borderRightColor="blue"
 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • BorderRightColor

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

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

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

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

    • setValue

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

      public boolean hasPredefinedConstantValue()
      Returns:
      true if its cssValue is any of the values initial, inherit or transparent.
      Since:
      1.0.0