public enum MathematicalFunctions extends Enum<MathematicalFunctions>
| Enum Constant and Description |
|---|
ACOS |
ASIN |
ATAN |
COS |
COSH |
EXPM1 |
HYPOT |
LN1P |
RINT |
SIN |
SINH |
TAN |
TANH |
| Modifier and Type | Method and Description |
|---|---|
static MathematicalFunctions |
byName(String name) |
String |
getName() |
Object |
getValue(Object[] inputData) |
static boolean |
isMathematicalFunctions(String name) |
static MathematicalFunctions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MathematicalFunctions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MathematicalFunctions EXPM1
public static final MathematicalFunctions HYPOT
public static final MathematicalFunctions LN1P
public static final MathematicalFunctions RINT
public static final MathematicalFunctions SIN
public static final MathematicalFunctions ASIN
public static final MathematicalFunctions SINH
public static final MathematicalFunctions COS
public static final MathematicalFunctions ACOS
public static final MathematicalFunctions COSH
public static final MathematicalFunctions TAN
public static final MathematicalFunctions ATAN
public static final MathematicalFunctions TANH
public static MathematicalFunctions[] values()
for (MathematicalFunctions c : MathematicalFunctions.values()) System.out.println(c);
public static MathematicalFunctions valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static boolean isMathematicalFunctions(String name)
public static MathematicalFunctions byName(String name)
public String getName()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.