Class WebkitFlexBasis
java.lang.Object
com.webfirmframework.wffweb.css.core.AbstractCssProperty<WebkitFlexBasis>
com.webfirmframework.wffweb.css.css3.WebkitFlexBasis
- All Implemented Interfaces:
CssProperty
,Serializable
,Cloneable
-webkit-flex-basis: length|auto|initial|inherit; The -webkit-flex-basis property specifies the initial length of a flexible item. Note: If the element is not a flexible item, the -webkit-flex-basis property has no effect. Default value: auto Inherited: no Animatable: yes Version: CSS3 JavaScript syntax: object.style.webkitFlexBasis="200px"
- Since:
- 1.0.0
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTheauto
will be set as the valueWebkitFlexBasis
(float percent) WebkitFlexBasis
(float value, CssLengthUnit cssLengthUnit) WebkitFlexBasis
(WebkitFlexBasis webkitFlexBasis) WebkitFlexBasis
(String cssValue) -
Method Summary
Modifier and TypeMethodDescriptiongetUnit()
getValue()
gets the width in float value.static boolean
validates if the given cssValue is valid for this class.void
sets asauto
.void
sets asinherit
void
sets asinitial
setCssValue
(String cssValue) void
setPercent
(float percent) setValue
(float value, CssLengthUnit cssLengthUnit) toString()
Methods inherited from class com.webfirmframework.wffweb.css.core.AbstractCssProperty
clone, getStateChangeInformer, isAlreadyInUse, setAlreadyInUse, setStateChangeInformer, toCssString
-
Field Details
-
AUTO
- See Also:
-
INITIAL
- See Also:
-
INHERIT
- See Also:
-
-
Constructor Details
-
WebkitFlexBasis
public WebkitFlexBasis()Theauto
will be set as the value -
WebkitFlexBasis
- Parameters:
cssValue
- the css value to set.
-
WebkitFlexBasis
- Parameters:
webkitFlexBasis
- theWebkitFlexBasis
object from which the cssValue to set.And,null
will throwNullValueException
-
WebkitFlexBasis
public WebkitFlexBasis(float percent) - Parameters:
percent
- the percentage value to set. The cssLengthUnit will automatically set to %.- Since:
- 1.0.0
-
WebkitFlexBasis
- Parameters:
value
-cssLengthUnit
-
-
-
Method Details
-
setValue
- 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
- Returns:
- the name portion in style, eg
align-content
for stylealign-content: center
.
-
getCssValue
- Returns:
- the value portion in style, eg
center
for stylealign-content: center
.
-
toString
-
getValue
gets the width in float value.WebkitFlexBasis#getUnit()
should be used to get the cssLengthUnit for this value.- Returns:
- the value in float or null if the cssValue is
initial
orinherit
. - Since:
- 1.0.0
-
getUnit
- Returns:
- the cssLengthUnit
PX
/PER
, ornull
if the value is any inbuilt value likeinherit
. - Since:
- 1.0.0
-
setCssValue
- Specified by:
setCssValue
in classAbstractCssProperty<WebkitFlexBasis>
- Parameters:
cssValue
- the value should be in the format of55px
or95%
.null
is considered as an invalid value and it will throwNullValueException
.- Returns:
- the current object.
- Since:
- 1.0.0
-
setAsInitial
public void setAsInitial()sets asinitial
- Since:
- 1.0.0
-
setAsInherit
public void setAsInherit()sets asinherit
- Since:
- 1.0.0
-
setAsAuto
public void setAsAuto()sets asauto
.- Since:
- 1.0.0
-
isValid
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
-