Class SingleArgFunctionMatcher
java.lang.Object
com.singularsys.jep.configurableparser.matchers.SingleArgFunctionMatcher
- All Implemented Interfaces:
GrammarMatcher,Serializable
A matcher for functions like "sin 30" without brackets and a single simple argument.
- Since:
- 3.5
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidDelayed initialisation, this method is called whenever components of the jep instance are changed.match(Lookahead2Iterator<Token> it, GrammarParser parser) Test whether the input matches this pattern.
-
Constructor Details
-
SingleArgFunctionMatcher
Constructor- Parameters:
open- token for normal functions like "sin(x)", if the open token is detected then match will return null
-
-
Method Details
-
match
Description copied from interface:GrammarMatcherTest whether the input matches this pattern.- Specified by:
matchin interfaceGrammarMatcher- Parameters:
it- An iterator inspecting the inputparser- the parser to use when evaluating sub expressions- Returns:
- if matched returns a node representing the content, return null is does not match
- Throws:
ParseException- if there is a syntactical error in the input.
-
init
Description copied from interface:GrammarMatcherDelayed initialisation, this method is called whenever components of the jep instance are changed.- Specified by:
initin interfaceGrammarMatcher- Parameters:
jep- the current jep instance.
-