Uses of Class
org.openrefine.expr.ParsingException
-
Packages that use ParsingException Package Description org.openrefine org.openrefine.expr org.openrefine.grel org.openrefine.operations.exceptions org.openrefine.templating -
-
Uses of ParsingException in org.openrefine
Methods in org.openrefine that throw ParsingException Modifier and Type Method Description protected void
RefineTest. parseEval(Properties bindings, String[] test)
Parse and evaluate a GREL expression and compare the result to the expect valueprotected void
RefineTest. parseEvalType(Properties bindings, String test, Class clazz)
Parse and evaluate a GREL expression and compare the result an expected type using instanceof -
Uses of ParsingException in org.openrefine.expr
Methods in org.openrefine.expr that throw ParsingException Modifier and Type Method Description Evaluable
LanguageSpecificParser. parse(String source, String languagePrefix)
static Evaluable
MetaParser. parse(String s)
Parse an expression that might have a language prefix into an Evaluable. -
Uses of ParsingException in org.openrefine.grel
Methods in org.openrefine.grel that return ParsingException Modifier and Type Method Description protected ParsingException
Parser. makeException(String desc)
Methods in org.openrefine.grel that throw ParsingException Modifier and Type Method Description protected GrelExpr
Parser. parseExpression()
<expression> := <sub-expression> | <expression> [ "<" "<=" ">" ">=" "==" "!=" ] <sub-expression>
protected List<GrelExpr>
Parser. parseExpressionList(String closingDelimiter)
<expression-list> := <empty> | <expression> ( "," <expression> )*
protected GrelExpr
Parser. parseFactor()
<term> := <term-start> ( <path-segment> )* <term-start> := <string> | <number> | - <number> | <regex> | <identifier> | <identifier> ( <expression-list> )
<path-segment> := "[" <expression-list> "]" | "." <identifier> | "." <identifier> "(" <expression-list> ")"
protected GrelExpr
Parser. parseSubExpression()
<sub-expression> := <term> | <sub-expression> [ "+" "-" ] <term>
protected GrelExpr
Parser. parseTerm()
<term> := <factor> | <term> [ "*" "/" "%" ] <factor>
Constructors in org.openrefine.grel that throw ParsingException Constructor Description Parser(String s, String languagePrefix)
Parser(String s, String languagePrefix, int from, int to)
-
Uses of ParsingException in org.openrefine.operations.exceptions
Constructors in org.openrefine.operations.exceptions with parameters of type ParsingException Constructor Description ParsingOperationException(ParsingException cause)
-
Uses of ParsingException in org.openrefine.templating
Methods in org.openrefine.templating that throw ParsingException Modifier and Type Method Description static Template
Parser. parse(String s)
Parse method
-