Module io.sf.carte.css4j
Package io.sf.carte.doc.style.css
Enum Class CSSMathFunctionValue.MathFunction
java.lang.Object
java.lang.Enum<CSSMathFunctionValue.MathFunction>
io.sf.carte.doc.style.css.CSSMathFunctionValue.MathFunction
- All Implemented Interfaces:
Serializable
,Comparable<CSSMathFunctionValue.MathFunction>
,java.lang.constant.Constable
- Enclosing interface:
CSSMathFunctionValue
public static enum CSSMathFunctionValue.MathFunction
extends Enum<CSSMathFunctionValue.MathFunction>
Enumeration of mathematical functions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CSSMathFunctionValue.MathFunction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABS
abs()
-
MAX
max()
-
MIN
min()
-
CLAMP
clamp()
-
SIGN
sign()
-
SIN
sin()
-
COS
cos()
-
TAN
tan()
-
ASIN
asin()
-
ACOS
acos()
-
ATAN
atan()
-
ATAN2
atan2()
-
POW
pow()
-
SQRT
sqrt()
-
HYPOT
hypot()
-
-
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
-