Class KeyWord
Buy me a cup of coffee via donation
or support me purchasing the license via ORDER Page , or INFIMA online store
java.lang.Object
org.mariuszgromada.math.mxparser.parsertokens.KeyWord
- All Implemented Interfaces:
Serializable
Class representing key words knowon to the parser
- Version:
- 5.2.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:
Buy me a cup of coffee via donation
or support me purchasing the license via ORDER Page , or INFIMA online store
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
int
int
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
Checks whether the specified keyword is in the form of a function.
-
Field Details
-
NO_DEFINITION
public static final int NO_DEFINITION- See Also:
-
wordString
-
wordId
public int wordId -
wordTypeId
public int wordTypeId -
description
-
syntax
-
since
-
-
Constructor Details
-
KeyWord
public KeyWord() -
KeyWord
public KeyWord(String wordString, String description, int wordId, String syntax, String since, int wordTypeId) Constructor - creates key words form wordString wordId wordTypId syntax since- Parameters:
wordString
- the word string (refers to below interfaces)wordId
- the word identifier (refers to below interfaces)wordTypeId
- the word type (refers to below interfaces)description
- the word descriptionsyntax
- the word syntaxsince
- the word version since
-
-
Method Details
-
isFunctionForm
Checks whether the specified keyword is in the form of a function.- Parameters:
kw
- Provided key word.- Returns:
- True in case kw is Function1Arg, Function2Arg, Function3Arg, FunctionVariadic, Function, RecursiveArgument otherwise returns false.
- See Also:
-