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

public class Flex extends AbstractCssProperty<Flex> implements StateChangeInformer<CssProperty>

 flex: flex-grow flex-shrink flex-basis|auto|initial|inherit;

 The flex property specifies the length of the item, relative to the rest of the flexible items inside the same container.

 The flex property is a shorthand for the flex-grow, flex-shrink, and the flex-basis properties.

 Note: If the element is not a flexible item, the flex property has no effect.
 Default value:  0 1 auto
 Inherited:      no
 Animatable:     yes
 Version:        CSS3
 JavaScript syntax:      object.style.flex="1"

 
 The undefined value for flex-grow, flex-shrink and flex-basis in flex property is 1, 1 and 0% respectively.
 
 
Since:
1.0.0
See Also:
  • Field Details

  • Constructor Details

    • Flex

      public Flex()
      The value 0 1 auto will be assigned as the cssValue.
      Since:
      1.0.0
    • Flex

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

      public Flex(Flex flex)
      Parameters:
      flex - the Flex object from which the cssValue to set.And, null will throw NullValueException
  • Method Details

    • 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
    • setCssValue

      public Flex setCssValue(String cssValue)
      Specified by:
      setCssValue in class AbstractCssProperty<Flex>
      Parameters:
      cssValue - the value should be in the format of 1 1 auto or 1 1 15px. null is considered as an invalid value and it will throw NullValueException.
      Returns:
      the current object.
      Since:
      1.0.0
    • isValid

      public static boolean isValid(String cssValue)
      checks the given css value is valid for this class. It does't do a strict validation.
      Parameters:
      cssValue -
      Returns:
      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
    • getFlexBasis

      public FlexBasis getFlexBasis()
    • getFlexShrink

      public FlexShrink getFlexShrink()
    • getFlexGrow

      public FlexGrow getFlexGrow()
    • setFlexGrow

      public Flex setFlexGrow(FlexGrow flexGrow)
    • setFlexShrink

      public Flex setFlexShrink(FlexShrink flexShrink)
    • setFlexBasis

      public Flex setFlexBasis(FlexBasis flexBasis)
    • stateChanged

      public void stateChanged(CssProperty stateChangedObject)
      Specified by:
      stateChanged in interface StateChangeInformer<CssProperty>
    • addPredefinedConstant

      protected void addPredefinedConstant(String constant)
      Since:
      1.0.0