Uses of Class
ognl.ParseException
-
Packages that use ParseException Package Description ognl OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects. -
-
Uses of ParseException in ognl
Methods in ognl that return ParseException Modifier and Type Method Description ParseException
OgnlParser. generateParseException()
Generate ParseException.Methods in ognl that throw ParseException Modifier and Type Method Description void
OgnlParser. additiveExpression()
void
OgnlParser. andExpression()
void
OgnlParser. assignmentExpression()
java.lang.String
OgnlParser. className()
java.lang.String
OgnlParser. classReference()
void
OgnlParser. conditionalTestExpression()
void
OgnlParser. constructorCall()
void
OgnlParser. equalityExpression()
void
OgnlParser. exclusiveOrExpression()
void
OgnlParser. expression()
void
OgnlParser. inclusiveOrExpression()
void
OgnlParser. index()
void
OgnlParser. keyValueExpression()
void
OgnlParser. logicalAndExpression()
void
OgnlParser. logicalOrExpression()
void
OgnlParser. methodCall()
void
OgnlParser. multiplicativeExpression()
void
OgnlParser. navigationChain()
void
OgnlParser. primaryExpression()
void
OgnlParser. projection()
Apply an expression to all elements of a collection, creating a new collection as the result.void
OgnlParser. propertyName()
void
OgnlParser. relationalExpression()
void
OgnlParser. selectAll()
Apply a boolean expression to all elements of a collection, creating a new collection containing those elements for which the expression returned true.void
OgnlParser. selectFirst()
Apply a boolean expression to all elements of a collection, creating a new collection containing those elements for the first element for which the expression returned true.void
OgnlParser. selection()
void
OgnlParser. selectLast()
Apply a boolean expression to all elements of a collection, creating a new collection containing those elements for the first element for which the expression returned true.void
OgnlParser. shiftExpression()
void
OgnlParser. staticMethodCall(java.lang.String className)
void
OgnlParser. staticReference()
Node
OgnlParser. topLevelExpression()
This is the top-level construct of OGNL.void
OgnlParser. unaryExpression()
-