Enum Class WebkitAnimationDirection
java.lang.Object
java.lang.Enum<WebkitAnimationDirection>
com.webfirmframework.wffweb.css.css3.WebkitAnimationDirection
- All Implemented Interfaces:
 CssProperty,Serializable,Cloneable,Comparable<WebkitAnimationDirection>,Constable
-webkit-animation-direction:
 normal|reverse|alternate|alternate-reverse|initial|inherit;
- 
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> - 
Enum Constant Summary
Enum Constants - 
Method Summary
Modifier and TypeMethodDescriptionstatic WebkitAnimationDirectiongets the corresponding object for the givencssValueor null for invalid cssValue.static booleanchecks whether the given givencssValueis valid for this css property, i.e.toString()static WebkitAnimationDirectionReturns the enum constant of this class with the specified name.static WebkitAnimationDirection[]values()Returns an array containing the constants of this enum class, in the order they are declared. 
- 
Enum Constant Details
- 
NORMAL
 - 
REVERSE
 - 
ALTERNATE
 - 
ALTERNATE_REVERSE
 - 
INITIAL
 - 
INHERIT
 
 - 
 - 
Method Details
- 
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
 - an array containing the constants of this enum class, in the order they are declared
 
 - 
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
 name- the name of the enum constant to be returned.- Returns:
 - the enum constant with the specified name
 - Throws:
 IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
 - 
getCssName
- Specified by:
 getCssNamein interfaceCssProperty- Returns:
 - the name portion in style, eg 
align-contentfor stylealign-content: center. 
 - 
getCssValue
- Specified by:
 getCssValuein interfaceCssProperty- Returns:
 - the value portion in style, eg 
centerfor stylealign-content: center. 
 - 
toString
- Overrides:
 toStringin classEnum<WebkitAnimationDirection>
 - 
isValid
checks whether the given givencssValueis valid for this css property, i.e. whether it can have a corresponding object from it.- Parameters:
 cssValue-- Returns:
 - true if the given 
cssValuehas a corresponding object. - Since:
 - 1.0.0
 
 - 
getThis
gets the corresponding object for the givencssValueor null for invalid cssValue.- Parameters:
 cssValue- the css property value without including!importantin it.- Returns:
 - the corresponding object for the given 
cssValueor null for invalid cssValue. - Since:
 - 1.0.0
 
 
 -