- All Implemented Interfaces:
Serializable
,Comparable<TransformFunctions>
,java.lang.constant.Constable
Enumeration of CSS transform functions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionmatrix()
function.Other transform functions.perspective()
function.rotate()
function.rotate3d()
function.rotateX()
function.rotateY()
function.rotateZ()
function.scale()
function.scale3d()
function.scaleX()
function.scaleY()
function.scaleZ()
function.skew()
function.skewX()
function.skewY()
function.translate()
function.translate3d()
function.translateX()
function.translateY()
function.translateZ()
function. -
Method Summary
Modifier and TypeMethodDescriptionstatic TransformFunctions
Returns the enum constant of this class with the specified name.static TransformFunctions[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MATRIX
matrix()
function. -
PERSPECTIVE
perspective()
function. -
TRANSLATE
translate()
function. -
TRANSLATE_3D
translate3d()
function. -
TRANSLATE_X
translateX()
function. -
TRANSLATE_Y
translateY()
function. -
TRANSLATE_Z
translateZ()
function. -
SCALE
scale()
function. -
SCALE_3D
scale3d()
function. -
SCALE_X
scaleX()
function. -
SCALE_Y
scaleY()
function. -
SCALE_Z
scaleZ()
function. -
ROTATE
rotate()
function. -
ROTATE_3D
rotate3d()
function. -
ROTATE_X
rotateX()
function. -
ROTATE_Y
rotateY()
function. -
ROTATE_Z
rotateZ()
function. -
SKEW
skew()
function. -
SKEW_X
skewX()
function. -
SKEW_Y
skewY()
function. -
OTHER
Other transform functions.
-
-
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
-