Package com.ezylang.evalex.parser
-
Class Summary Class Description ASTNode Expressions are parsed into an abstract syntax tree (AST).ShuntingYardConverter The shunting yard algorithm can be used to convert a mathematical expression from an infix notation into either a postfix notation (RPN, reverse polish notation), or into an abstract syntax tree (AST).Token A token represents a single part of an expression, like an operator, number literal, or a brace.Tokenizer The tokenizer is responsible to parse a string and return a list of tokens. -
Enum Summary Enum Description Token.TokenType -
Exception Summary Exception Description ParseException Exception while parsing the expression.