Class WebkitColumnCount

All Implemented Interfaces:
CssProperty, Serializable, Cloneable

public class WebkitColumnCount extends AbstractCssProperty<WebkitColumnCount>
  -webkit-column-count: number|auto|initial|inherit;

 The -webkit-column-count property specifies the number of columns an element should be divided into.
 Default value:  auto
 Inherited:      no
 Animatable:     yes
 Version:        CSS3
 JavaScript syntax:      object.style.webkitColumnCount=3
 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • WebkitColumnCount

      public WebkitColumnCount()
      The default value 1 will be set as the cssValue.
      Since:
      1.0.0
    • WebkitColumnCount

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

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

      public WebkitColumnCount(int value)
      Parameters:
      value -
  • Method Details

    • 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 Integer getValue()
      gets the webkitColumnCount in Integer value.
      Returns:
      the value in int or null if the cssValue is initial or inherit.
      Since:
      1.0.0
    • setValue

      public void setValue(int value)
      Parameters:
      value - the value to set
      Since:
      1.0.0
    • setCssValue

      public WebkitColumnCount setCssValue(String cssValue)
      Specified by:
      setCssValue in class AbstractCssProperty<WebkitColumnCount>
      Parameters:
      cssValue - the value should be in the format of 0.5, initial/inherit. 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
    • setAsAuto

      public void setAsAuto()
      sets as auto
      Since:
      1.0.0
    • isValid

      public static boolean isValid(String cssValue)
      validates if the given cssValue is valid for this class.
      Parameters:
      cssValue - the value to check.
      Returns:
      true if valid and false if invalid.
      Since:
      1.0.0