Enum MathematicalFunctions
- java.lang.Object
-
- java.lang.Enum<MathematicalFunctions>
-
- org.kie.pmml.api.enums.builtinfunctions.MathematicalFunctions
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MathematicalFunctions>
public enum MathematicalFunctions extends java.lang.Enum<MathematicalFunctions>
- See Also:
- Built-in functions
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MathematicalFunctionsbyName(java.lang.String name)java.lang.StringgetName()java.lang.ObjectgetValue(java.lang.Object[] inputData)static booleanisMathematicalFunctions(java.lang.String name)static MathematicalFunctionsvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
EXPM1
public static final MathematicalFunctions EXPM1
-
HYPOT
public static final MathematicalFunctions HYPOT
-
LN1P
public static final MathematicalFunctions LN1P
-
RINT
public static final MathematicalFunctions RINT
-
SIN
public static final MathematicalFunctions SIN
-
ASIN
public static final MathematicalFunctions ASIN
-
SINH
public static final MathematicalFunctions SINH
-
COS
public static final MathematicalFunctions COS
-
ACOS
public static final MathematicalFunctions ACOS
-
COSH
public static final MathematicalFunctions COSH
-
TAN
public static final MathematicalFunctions TAN
-
ATAN
public static final MathematicalFunctions ATAN
-
TANH
public static final MathematicalFunctions TANH
-
-
Method Detail
-
values
public static MathematicalFunctions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MathematicalFunctions c : MathematicalFunctions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MathematicalFunctions valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
isMathematicalFunctions
public static boolean isMathematicalFunctions(java.lang.String name)
-
byName
public static MathematicalFunctions byName(java.lang.String name)
-
getName
public java.lang.String getName()
-
getValue
public java.lang.Object getValue(java.lang.Object[] inputData)
-
-