Package com.singularsys.jep.misc
Class OperatorAsFunctionGrammarMatcher
java.lang.Object
com.singularsys.jep.misc.OperatorAsFunctionGrammarMatcher
- All Implemented Interfaces:
GrammarMatcher,Serializable
A GrammarMatcher which matches functions in the form '
+(x,y)' where + is an operator.
- Since:
- 3.5
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected TokenGenerate a token to use in GrammarExceptionsvoidDelayed initialisation, this method is called whenever components of the jep instance are changed.match(Lookahead2Iterator<Token> it, GrammarParser parser) Attempt to match a function, calls the GrammarParser.parseSubExpression() to match function arguments.
-
Constructor Details
-
OperatorAsFunctionGrammarMatcher
public OperatorAsFunctionGrammarMatcher(Token open, Token close, Token comma, List<Operator> operators) Create a OperatorAsFunctionGrammarMatcher- Parameters:
open- token representing an opening bracketclose- token representing a closing bracketcomma- token representing a list item separatoroperators- list of operators which will be matched
-
-
Method Details
-
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.
-
errorToken
Generate a token to use in GrammarExceptions- Parameters:
it- used to get current position- Returns:
- a TerminatorToken
-
match
Attempt to match a function, calls the GrammarParser.parseSubExpression() to match function arguments.- 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.
-