Class ColumnRuleWidth

All Implemented Interfaces:
CssProperty, Serializable, Cloneable

public class ColumnRuleWidth extends AbstractCssProperty<ColumnRuleWidth>
 column-rule-width: medium|thin|thick|length|initial|inherit;

 The column-rule-width property specifies the width of the rule between columns.
 Default value:  medium
 Inherited:      no
 Animatable:     yes
 Version:        CSS3
 JavaScript syntax:      object.style.columnRuleWidth="5px"
 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • ColumnRuleWidth

      public ColumnRuleWidth()
      The medium will be set as the value
    • ColumnRuleWidth

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

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

      public ColumnRuleWidth(float percent)
      Parameters:
      percent - the percentage value to set. The cssLengthUnit will automatically set to %.
      Since:
      1.0.0
    • ColumnRuleWidth

      public ColumnRuleWidth(float value, CssLengthUnit cssLengthUnit)
      Parameters:
      value -
      cssLengthUnit -
  • Method Details

    • setValue

      public ColumnRuleWidth setValue(float value, CssLengthUnit cssLengthUnit)
      Parameters:
      value -
      cssLengthUnit -
      Returns:
      the current object
      Since:
      1.0.0
    • setPercent

      public void setPercent(float percent)
      Parameters:
      percent - the percent to set
      Since:
      1.0.0
    • getCssName

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

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

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

      public Float getValue()
      gets the column-rule-width in float value. ColumnRuleWidth#getUnit() should be used to get the cssLengthUnit for this value.
      Returns:
      the value in float or null if the cssValue is initial or inherit.
      Since:
      1.0.0
    • getUnit

      public CssLengthUnit getUnit()
      Returns:
      the cssLengthUnit PX/PER, or null if the value is any inbuilt value like inherit.
      Since:
      1.0.0
    • setCssValue

      public ColumnRuleWidth setCssValue(String cssValue)
      Specified by:
      setCssValue in class AbstractCssProperty<ColumnRuleWidth>
      Parameters:
      cssValue - the value should be in the format of 55px or 95%. null is considered as an invalid value and it will throw NullValueException.
      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
    • setAsMedium

      public void setAsMedium()
      sets as medium.
      Since:
      1.0.0
    • setAsThin

      public void setAsThin()
      sets as thin.
      Since:
      1.0.0
    • setAsThick

      public void setAsThick()
      sets as thick.
      Since:
      1.0.0
    • isValid

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