public enum MathFunction extends java.lang.Enum<MathFunction>
Enum Constant and Description |
---|
ABS |
ACOS |
ASIN |
ATAN |
CEIL |
COS |
COSH |
EXP |
FLOOR |
LOG |
LOG10 |
SIGNUM |
SIN |
SINH |
SQRT |
TAN |
TANH |
Modifier and Type | Method and Description |
---|---|
static MathFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MathFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MathFunction ABS
public static final MathFunction ACOS
public static final MathFunction ASIN
public static final MathFunction ATAN
public static final MathFunction CEIL
public static final MathFunction COS
public static final MathFunction COSH
public static final MathFunction EXP
public static final MathFunction FLOOR
public static final MathFunction LOG
public static final MathFunction LOG10
public static final MathFunction SIGNUM
public static final MathFunction SIN
public static final MathFunction SINH
public static final MathFunction SQRT
public static final MathFunction TAN
public static final MathFunction TANH
public static MathFunction[] values()
for (MathFunction c : MathFunction.values()) System.out.println(c);
public static MathFunction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null