Package org.mariuszgromada.math.mxparser
Class PrimitiveElement
- java.lang.Object
-
- org.mariuszgromada.math.mxparser.PrimitiveElement
-
- Direct Known Subclasses:
Argument,Constant,Expression,Function
public class PrimitiveElement extends Object
Class used for connecting all basic elements such as: Argument, Constant, Function. Class not used by the end user.- Version:
- 5.0.0
- Author:
- Mariusz Gromada
MathParser.org - mXparser project page
mXparser on GitHub
INFIMA place to purchase a commercial MathParser.org-mXparser software license
info@mathparser.org
ScalarMath.org - a powerful math engine and math scripting language
Scalar Lite
Scalar Pro
MathSpace.pl - See Also:
Argument,Constant,Function,RecursiveArgument,Expression.addDefinitions(PrimitiveElement...),Expression.removeDefinitions(PrimitiveElement...)
-
-
Constructor Summary
Constructors Constructor Description PrimitiveElement(int typeId)Default constructor setting element type id
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetMyTypeId()Returns element type id
-
-
-
Constructor Detail
-
PrimitiveElement
public PrimitiveElement(int typeId)
Default constructor setting element type id- Parameters:
typeId- Element type id- See Also:
Argument.TYPE_ID,Constant.TYPE_ID,Function.TYPE_ID
-
-
Method Detail
-
getMyTypeId
public int getMyTypeId()
Returns element type id- Returns:
- Element type id as int Function.TYPE_ID, Argument.TYPE_ID, Function.TYPE_ID
- See Also:
Argument.TYPE_ID,Constant.TYPE_ID,Function.TYPE_ID
-
-