Package org.mariuszgromada.math.mxparser
Enum CompiledElement.ToCall
- java.lang.Object
-
- java.lang.Enum<CompiledElement.ToCall>
-
- org.mariuszgromada.math.mxparser.CompiledElement.ToCall
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CompiledElement.ToCall>
- Enclosing class:
- CompiledElement
static enum CompiledElement.ToCall extends java.lang.Enum<CompiledElement.ToCall>
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description privateToCall()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CompiledElement.ToCallvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CompiledElement.ToCall[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FREE_ARGUMENT
public static final CompiledElement.ToCall FREE_ARGUMENT
-
CONSTANT
public static final CompiledElement.ToCall CONSTANT
-
UNIT
public static final CompiledElement.ToCall UNIT
-
USER_CONSTANT
public static final CompiledElement.ToCall USER_CONSTANT
-
RANDOM_VARIABLE
public static final CompiledElement.ToCall RANDOM_VARIABLE
-
DEPENDENT_ARGUMENT
public static final CompiledElement.ToCall DEPENDENT_ARGUMENT
-
calculusCalc
public static final CompiledElement.ToCall calculusCalc
-
IF_CONDITION
public static final CompiledElement.ToCall IF_CONDITION
-
IFF
public static final CompiledElement.ToCall IFF
-
RECURSIVE_ARGUMENT
public static final CompiledElement.ToCall RECURSIVE_ARGUMENT
-
variadicFunCalc
public static final CompiledElement.ToCall variadicFunCalc
-
f3ArgCalc
public static final CompiledElement.ToCall f3ArgCalc
-
f2ArgCalc
public static final CompiledElement.ToCall f2ArgCalc
-
f1ArgCalc
public static final CompiledElement.ToCall f1ArgCalc
-
USER_FUNCTION
public static final CompiledElement.ToCall USER_FUNCTION
-
TETRATION
public static final CompiledElement.ToCall TETRATION
-
POWER
public static final CompiledElement.ToCall POWER
-
FACT
public static final CompiledElement.ToCall FACT
-
PERC
public static final CompiledElement.ToCall PERC
-
MODULO
public static final CompiledElement.ToCall MODULO
-
NEG
public static final CompiledElement.ToCall NEG
-
rootOperCalc
public static final CompiledElement.ToCall rootOperCalc
-
BITWISE_COMPL
public static final CompiledElement.ToCall BITWISE_COMPL
-
MULTIPLY
public static final CompiledElement.ToCall MULTIPLY
-
DIVIDE
public static final CompiledElement.ToCall DIVIDE
-
DIVIDE_QUOTIENT
public static final CompiledElement.ToCall DIVIDE_QUOTIENT
-
MINUS
public static final CompiledElement.ToCall MINUS
-
PLUS
public static final CompiledElement.ToCall PLUS
-
NEQ
public static final CompiledElement.ToCall NEQ
-
EQ
public static final CompiledElement.ToCall EQ
-
LT
public static final CompiledElement.ToCall LT
-
GT
public static final CompiledElement.ToCall GT
-
LEQ
public static final CompiledElement.ToCall LEQ
-
GEQ
public static final CompiledElement.ToCall GEQ
-
COMMA
public static final CompiledElement.ToCall COMMA
-
bolCalc
public static final CompiledElement.ToCall bolCalc
-
bitwiseCalc
public static final CompiledElement.ToCall bitwiseCalc
-
PARENTHESES
public static final CompiledElement.ToCall PARENTHESES
-
Null
public static final CompiledElement.ToCall Null
-
-
Method Detail
-
values
public static CompiledElement.ToCall[] 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 (CompiledElement.ToCall c : CompiledElement.ToCall.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompiledElement.ToCall 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
-
-